We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d08fb12 commit bdf0fdaCopy full SHA for bdf0fda
.github/workflows/test.yaml
@@ -12,7 +12,7 @@ on:
12
workflow_dispatch: {}
13
14
jobs:
15
- integration-tests:
+ unit-tests:
16
runs-on: ubuntu-latest
17
steps:
18
@@ -33,6 +33,21 @@ jobs:
33
command: test
34
args: -v -- --nocapture
35
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
48
+ toolchain: stable
49
+ override: true
50
51
- name: run integration tests
52
uses: actions-rs/cargo@v1
53
with:
0 commit comments