Skip to content

Minor v19 2 (#59)

Minor v19 2 (#59) #124

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
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