This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
moved to chuchi #16
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
# Workflow recipe from https://github.com/actions-rs/meta/blob/master/recipes/msrv.md | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
env: | |
RUSTFLAGS: -Dwarnings | |
# change manually in matrix | |
rust_min: 1.65.0 | |
jobs: | |
test-ubuntu: | |
name: Test Ubuntu | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
- nightly | |
- 1.65.0 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- run: cargo test | |
test-windows: | |
name: Test Windows | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
- nightly | |
- 1.65.0 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- run: cargo test |