Weekly testing #38
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: Weekly testing | |
on: | |
push: | |
branches: | |
- main | |
schedule: | |
# Run each week | |
- cron: "0 0 * * 0" | |
jobs: | |
linux: | |
name: Linux | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Run tests | |
run: cargo test --workspace --verbose --release | |
windows: | |
name: Windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Run tests | |
run: cargo test --workspace --verbose --release | |
mac-intel: | |
name: MacOS Intel | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Run tests | |
run: cargo test --workspace --verbose --release | |
mac-arm: | |
name: MacOS ARM | |
runs-on: macos-13-xlarge | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Run tests | |
run: cargo test --workspace --verbose --release |