Skip to content

Commit

Permalink
cancel build or package
Browse files Browse the repository at this point in the history
  • Loading branch information
Jzow committed Aug 19, 2023
1 parent 57f1474 commit c9f4446
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,44 +28,44 @@ jobs:
override: true

- name: check
uses: actions-rs/cargo@v1
uses: actions/checkout@v3
with:
command: check
args: --all --bins --examples --features logger

- name: check avoid-dev-deps
uses: actions-rs/cargo@v1
uses: actions/checkout@v3
if: matrix.rust == 'nightly'
with:
command: check
args: --all -Z avoid-dev-deps

- name: check unstable
uses: actions-rs/cargo@v1
uses: actions/checkout@v3
with:
command: check
args: --all --bins --examples --tests --features unstable,logger

- name: check no-default-features
uses: actions-rs/cargo@v1
uses: actions/checkout@v3
with:
command: check
args: --no-default-features

- name: check benches
uses: actions-rs/cargo@v1
uses: actions/checkout@v3
with:
command: check
args: --benches

- name: tests
uses: actions-rs/cargo@v1
uses: actions/checkout@v3
with:
command: test
args: --all --features logger

- name: tests unstable
uses: actions-rs/cargo@v1
uses: actions/checkout@v3
with:
command: test
args: --all --features unstable,logger
Expand Down

0 comments on commit c9f4446

Please sign in to comment.