mirror of
https://github.com/tun2proxy/tun2proxy.git
synced 2025-06-05 22:30:13 +00:00
ci: don't abort checks immediately if error is encountered
This commit is contained in:
parent
ce0c02b3bf
commit
b7e59b130e
1 changed files with 13 additions and 0 deletions
13
.github/workflows/rust.yml
vendored
13
.github/workflows/rust.yml
vendored
|
@ -9,6 +9,7 @@ env:
|
||||||
jobs:
|
jobs:
|
||||||
build_n_test:
|
build_n_test:
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
|
||||||
|
@ -16,11 +17,23 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: rustfmt
|
- name: rustfmt
|
||||||
|
if: ${{ !cancelled() }}
|
||||||
run: cargo fmt --all -- --check
|
run: cargo fmt --all -- --check
|
||||||
|
|
||||||
- name: check
|
- name: check
|
||||||
|
if: ${{ !cancelled() }}
|
||||||
run: cargo check --verbose
|
run: cargo check --verbose
|
||||||
|
|
||||||
- name: clippy
|
- name: clippy
|
||||||
|
if: ${{ !cancelled() }}
|
||||||
run: cargo clippy --all-targets --all-features -- -D warnings
|
run: cargo clippy --all-targets --all-features -- -D warnings
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
|
if: ${{ !cancelled() }}
|
||||||
run: cargo build --verbose --tests --all-features
|
run: cargo build --verbose --tests --all-features
|
||||||
|
|
||||||
|
- name: Abort on error
|
||||||
|
if: ${{ failure() }}
|
||||||
|
run: echo "Some of jobs failed" && false
|
Loading…
Add table
Add a link
Reference in a new issue