We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a257de8 commit 2a1acccCopy full SHA for 2a1accc
1 file changed
.github/workflows/integration-tests.yml
@@ -3,6 +3,8 @@ name: integration-tests
3
on:
4
push:
5
branches: [ main ]
6
+ pull_request:
7
+ branches: [ main ]
8
9
jobs:
10
ci:
@@ -11,15 +13,9 @@ jobs:
11
13
steps:
12
14
- uses: actions/checkout@v4
15
- uses: dtolnay/rust-toolchain@stable
-
- - run: cargo build
16
- - run: cargo test -- --nocapture
17
18
- - if: failure()
19
- run: |
20
- git config user.email "integration-tests@github.com"
21
- git config user.name "Integration Tests"
22
- git revert HEAD --no-edit
23
- git push
24
- env:
25
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+
+ - name: Build
+ run: cargo build
+ - name: Run tests
+ run: cargo test
0 commit comments