Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
LinkTed committed Oct 11, 2024
1 parent cf14cef commit 3f45bca
Showing 1 changed file with 21 additions and 47 deletions.
68 changes: 21 additions & 47 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,40 +15,28 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install toolchain with rustfmt
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run rustfmt
run: cargo fmt --all -- --check

audit:
name: Job audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run audit
uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
run: cargo fmt --all --check

clippy:
name: Job clippy
needs: rustfmt
runs-on: ubuntu-latest
steps:
- name: Install toolchain with clippy
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: clippy
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run clippy
uses: actions-rs/clippy-check@v1
uses: giraffate/clippy-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features ---all-targets -- --deny warnings -A clippy::unknown-clippy-lints
clippy_flags: --deny warnings -A clippy::unknown-clippy-lints

tests:
name: Job tests
Expand All @@ -61,43 +49,29 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Install toolchain ${{ matrix.rust_channel }} on ${{ matrix.os }}
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust_channel }}
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --no-default-features --features "${{ matrix.features }}"
run: cargo test --no-default-features --features "${{ matrix.features }}"

code-coverage:
name: Job code coverage
needs: tests
runs-on: ubuntu-latest
steps:
- name: Intall toolchain nightly on ubuntu-latest
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- uses: actions/checkout@v2
- name: Download and unpack grcov
run: curl -L "$URL" | tar jxf -
env:
URL: 'https://github.com/mozilla/grcov/releases/latest/download/grcov-linux-x86_64.tar.bz2'
- name: Run cargo test
uses: actions-rs/cargo@v1
uses: dtolnay/rust-toolchain@stable
with:
command: test
args: --all-features
env:
CARGO_INCREMENTAL: '0'
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
- name: Convert gcno and gcda files into lcov
run: ./grcov --llvm target/debug -s . -t lcov -o lcov.info --ignore-not-existing --ignore "tests/*" --ignore "examples/*" --ignore "/*" --excl-line "^ *#\["
- name: Upload coverage
uses: codecov/codecov-action@v1
components: llvm-tools-preview
- uses: actions/checkout@v4
- name: cargo install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: cargo llvm-cov
run: cargo llvm-cov --locked --all-features --lcov --output-path lcov.info
- name: Upload to codecov.io
uses: codecov/codecov-action@v4
with:
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: OS,RUST

0 comments on commit 3f45bca

Please sign in to comment.