Rust #228
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: Rust | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
schedule: | |
- cron: "37 8 * * 1,5" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install nightly | |
run: rustup toolchain install nightly && rustup toolchain install stable && rustup toolchain install 1.74 | |
- name: Miri (nightly) | |
run: rustup component add --toolchain nightly miri && cd savefile-test && cargo +nightly miri test | |
- name: Build (nightly) | |
run: cargo +nightly build --workspace | |
- name: Run tests (nightly) | |
run: cargo +nightly test --workspace | |
- name: Build min-deps (nightly) | |
run: cargo +nightly build -p savefile-min-build | |
- name: Build (stable) | |
run: cargo +stable build --workspace | |
- name: Run tests (stable) | |
run: cargo +stable test --workspace | |
- name: Build min-deps (stable) | |
run: cargo +stable build -p savefile-min-build | |
- name: compile_tests (stable) | |
run: cd compile_tests && cargo +stable test | |
- name: Build (1.74) | |
run: cargo +1.74 build --workspace | |