Skip to content

Commit

Permalink
Tweaking workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
haxelion committed Jul 7, 2024
1 parent 012e545 commit b7a0b1d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 33 deletions.
40 changes: 30 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,37 @@ jobs:
name: Check code with rustfmt and clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check code with rustfmt
run: cargo fmt --check
- name: Check code with clippy
run: cargo clippy
- uses: actions/checkout@v4
- name: Check code with rustfmt
run: cargo fmt --check
- name: Check code with clippy
run: cargo clippy
test:
name: Build and run tests
needs: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build library
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/checkout@v4
- name: Build library
run: cargo build --verbose
- name: Run tests
run: RUST_BACKTRACE=1 cargo test --verbose
coverage:
name: coverage
needs: test
if: github.event_name == 'push'
runs-on: ubuntu-latest
container:
image: xd009642/tarpaulin:develop-nightly
options: --security-opt seccomp=unconfined
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Generate code coverage
run: |
cargo +nightly tarpaulin --verbose --all-features --engine llvm --out xml
- name: Upload to codecov.io
uses: codecov/codecov-action@v4
with:
token: ${{secrets.CODECOV_TOKEN}}
fail_ci_if_error: true
23 changes: 0 additions & 23 deletions .github/workflows/coverage.yml

This file was deleted.

0 comments on commit b7a0b1d

Please sign in to comment.