Skip to content

[pre-commit.ci] pre-commit autoupdate #197

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #197

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
fail-fast: false
matrix:
platform: [ ubuntu-latest, macos-latest, windows-latest ]
toolchain: [ stable, nightly ]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Set up Rust toolchain
uses: actions-rs/[email protected]
with:
toolchain: ${{ matrix.toolchain }}
override: true
components: rustfmt, clippy
- name: Build
uses: actions-rs/[email protected]
with:
command: build
args: --verbose
- name: Test
uses: actions-rs/[email protected]
with:
command: test
args: --verbose --no-fail-fast