-
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (27 loc) · 896 Bytes
/
check-beta.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
name: Check on Rust beta
on:
schedule:
- cron: "0 0 * * 0" # Runs every Sunday at midnight
jobs:
check-beta:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
features: --features jack
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install build tools and dependencies (Linux only)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update && sudo apt-get install -y libasound2-dev
- name: Install Rust beta
run: rustup toolchain install beta --profile minimal
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
- name: Check on ${{ matrix.os }} with Rust beta
run: |
cargo check --verbose ${{ matrix.features || '' }}