mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 19:37:51 +03:00
CI: Add bitrot check to ensure examples and benchmarks still compile
This commit is contained in:
parent
e300ad7dfd
commit
965db3e7d8
1 changed files with 18 additions and 0 deletions
18
.github/workflows/ci.yml
vendored
18
.github/workflows/ci.yml
vendored
|
@ -80,6 +80,24 @@ jobs:
|
||||||
working-directory: ./age
|
working-directory: ./age
|
||||||
run: cargo build --verbose --no-default-features --target ${{ matrix.target }}
|
run: cargo build --verbose --no-default-features --target ${{ matrix.target }}
|
||||||
|
|
||||||
|
bitrot:
|
||||||
|
name: Bitrot
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: 1.51.0
|
||||||
|
override: true
|
||||||
|
- name: Install linux build dependencies
|
||||||
|
run: sudo apt install libfuse-dev
|
||||||
|
- name: cargo check
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: check
|
||||||
|
args: --tests --examples --benches --all-features
|
||||||
|
|
||||||
codecov:
|
codecov:
|
||||||
name: Code coverage
|
name: Code coverage
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue