Skip to content

refactor errors into crate root #23

refactor errors into crate root

refactor errors into crate root #23

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Checks and tests with ${{ matrix.feature-set }}
runs-on: ubuntu-latest
strategy:
matrix:
feature-set: ['', '--no-default-features --features alloc_fills']
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
default: true
components: clippy
- name: Check
run: cargo check ${{ matrix.feature-set }}
- name: Lint
run: cargo clippy ${{ matrix.feature-set }}
- name: Test
run: cargo test ${{ matrix.feature-set }}