-
Notifications
You must be signed in to change notification settings - Fork 12
40 lines (35 loc) · 1.13 KB
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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