retina/.github/workflows/ci.yml

61 lines
1.6 KiB
YAML
Raw Normal View History

2021-06-04 03:26:45 +04:00
name: CI
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
rust:
name: Test
strategy:
matrix:
rust:
- stable
- 1.52
include:
- rust: stable
extra_components: rustfmt
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ matrix.rust }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: ${{ matrix.extra_components }}
- name: Test
2022-04-01 21:09:23 +04:00
run: cargo test --all-features --all-targets
- name: Check fuzz tests
run: cd fuzz && cargo check
- name: Check main crate formatting
2021-06-04 03:26:45 +04:00
if: matrix.rust == 'stable'
run: cargo fmt -- --check
- name: Check fuzz crate formatting
if: matrix.rust == 'stable'
run: cd fuzz && cargo fmt -- --check
2022-02-01 02:06:01 +04:00
- name: Clippy on main crate
if: matrix.rust == 'stable'
2022-04-13 01:24:35 +04:00
run: cargo clippy -- -D warnings
2022-02-01 02:06:01 +04:00
- name: Clippy on fuzz crate
if: matrix.rust == 'stable'
2022-04-13 01:24:35 +04:00
run: cd fuzz && cargo clippy -- -D warnings
2022-02-01 02:06:01 +04:00
2021-06-04 03:26:45 +04:00
license:
name: Check copyright/license headers
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- run: find . -type f -print0 | xargs -0 .github/workflows/check-license.py