name: Build and test with Cargo
on:
push:
paths-ignore:
- "LICENSE"
- "README.md"
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Build and test with cargo
run: cargo test --verbose --all-features --workspace