Skip to content

Commit

Permalink
chore(ci): actualize CI + run tests w/o features
Browse files Browse the repository at this point in the history
  • Loading branch information
loyd committed Jun 16, 2024
1 parent aa38a4d commit 9a86cac
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,24 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: rustup show active-toolchain -v
- run: cargo build --all-targets --all-features

rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: rustup show active-toolchain -v
- run: rustup component add rustfmt
- run: cargo fmt --version
- run: cargo fmt -- --check

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: rustup show active-toolchain -v
- run: rustup component add clippy
- run: cargo clippy --version
- run: cargo clippy
Expand All @@ -39,6 +42,8 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: cargo test
- run: rustup show active-toolchain -v
- run: cargo test
- run: cargo test --all-features

0 comments on commit 9a86cac

Please sign in to comment.