Skip to content

Commit

Permalink
chore: Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
blelump authored Aug 8, 2024
1 parent 3d54663 commit 1a52ecb
Showing 1 changed file with 25 additions and 8 deletions.
33 changes: 25 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,30 @@ env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest
check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: check
args: --all-features --verbose

test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test
args: --all-features --verbose

0 comments on commit 1a52ecb

Please sign in to comment.