Skip to content

Allow DIFAT chains to end with FREESECT #57

Allow DIFAT chains to end with FREESECT

Allow DIFAT chains to end with FREESECT #57

Workflow file for this run

name: tests
on:
push:
paths-ignore:
- 'LICENSE-*'
- '**.md'
pull_request:
paths-ignore:
- 'LICENSE-*'
- '**.md'
jobs:
linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt, clippy
- name: Cargo fmt
run: cargo fmt --all -- --check
- name: Cargo clippy
run: cargo clippy --all-features -- -D warnings
tests:
strategy:
matrix:
os: [ ubuntu-20.04, windows-2019, macos-11]
rust: [ stable ]
needs: [linters]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- name: Test
run: cargo test --verbose