Skip to content

Commit

Permalink
ci: switch to something maintained
Browse files Browse the repository at this point in the history
  • Loading branch information
tshepang committed Jul 17, 2022
1 parent f8c3802 commit 4cb180d
Showing 1 changed file with 5 additions and 17 deletions.
22 changes: 5 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,33 +29,21 @@ jobs:
- uses: actions/checkout@v2

- name: Install ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
override: true

- name: Build
uses: actions-rs/cargo@v1
with:
command: build
run: cargo build

- name: Build (with "json" feature)
uses: actions-rs/cargo@v1
with:
command: build
args: --features json
run: cargo build --features json

- name: Build (with all features)
uses: actions-rs/cargo@v1
with:
command: build
args: --all-features
run: cargo build --all-features

- name: Build (with no features)
uses: actions-rs/cargo@v1
with:
command: build
args: --no-default-features
run: cargo build --no-default-features

security-audit:
runs-on: ubuntu-20.04
Expand Down

0 comments on commit 4cb180d

Please sign in to comment.