We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50d3f2b commit 1e8d359Copy full SHA for 1e8d359
.github/workflows/run_tests.yml
@@ -1,4 +1,4 @@
1
-name: build
+name: run integration tests
2
3
on:
4
workflow_dispatch:
@@ -7,15 +7,16 @@ on:
7
pull_request:
8
branches: [ "master" ]
9
10
-
11
jobs:
12
deploy:
13
runs-on: ubuntu-latest
14
concurrency:
15
group: ${{ github.workflow }}-${{ github.ref }}
16
steps:
17
- uses: actions/checkout@v4
18
- - name: run test
19
- run: |
+ - name: build
+ run: |
20
cargo build
+ - name: run test
21
22
python3 integration_tests/scripts/run_test.py
0 commit comments