Add MSRV #10
Workflow file for this run
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: Unit Tests, Stable Toolchain | |
on: | |
push: | |
branches: main | |
pull_request: | |
jobs: | |
unit-tests-stable: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
name: Stable Unit Tests | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v4 | |
- name: Install the latest stable Rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Run unit tests | |
run: cargo test |