Add Fixtures section to README #685
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
build: [ubuntu, macos, windows] | |
include: | |
- build: ubuntu | |
os: ubuntu-latest | |
toolchain: stable | |
- build: macos | |
os: macos-latest | |
toolchain: stable | |
- build: windows | |
os: windows-latest | |
toolchain: stable | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust (rustup) | |
run: | | |
rustup update ${{ matrix.toolchain }} | |
rustup default ${{ matrix.toolchain }} | |
rustup component add clippy | |
- name: Check warnings | |
run: cargo clippy --all-features --examples --tests -- -Dwarnings | |
- name: Run tests | |
run: cargo test | |
- name: Run tests (all features) | |
run: cargo test --all-features | |
format: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust (rustup) | |
run: | | |
rustup update ${{ matrix.toolchain }} | |
rustup default ${{ matrix.toolchain }} | |
- name: Check format | |
run: cargo fmt --all -- --check |