Skip to content

Commit bdf0fda

Browse files
committed
tests: separate unit and integration tests in CI
Signed-off-by: Shane Utt <[email protected]>
1 parent d08fb12 commit bdf0fda

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

.github/workflows/test.yaml

+16-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
workflow_dispatch: {}
1313

1414
jobs:
15-
integration-tests:
15+
unit-tests:
1616
runs-on: ubuntu-latest
1717
steps:
1818

@@ -33,6 +33,21 @@ jobs:
3333
command: test
3434
args: -v -- --nocapture
3535

36+
integration-tests:
37+
runs-on: ubuntu-latest
38+
steps:
39+
40+
- name: checkout repository
41+
uses: actions/checkout@v3
42+
with:
43+
fetch-depth: 0
44+
45+
- name: install rust
46+
uses: actions-rs/toolchain@v1
47+
with:
48+
toolchain: stable
49+
override: true
50+
3651
- name: run integration tests
3752
uses: actions-rs/cargo@v1
3853
with:

0 commit comments

Comments
 (0)