We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5c2d1c commit 85bc018Copy full SHA for 85bc018
.github/workflows/rust.yml
@@ -8,7 +8,7 @@ jobs:
8
strategy:
9
matrix:
10
rust: [stable, nightly]
11
- os: [ubuntu-20.04, windows-2019, macos-10.15]
+ os: [ubuntu-24.04, windows-2025, macos-14]
12
type: [Release, Debug]
13
14
steps:
@@ -19,7 +19,7 @@ jobs:
19
20
- name: Install Dependencies (Linux)
21
run: sudo apt-get update && sudo apt-get install libpulse-dev pulseaudio libdbus-1-dev
22
- if: matrix.os == 'ubuntu-20.04'
+ if: matrix.os == 'ubuntu-24.04'
23
24
- name: Check format
25
shell: bash
@@ -36,4 +36,4 @@ jobs:
36
- name: Test
37
38
run: rustup run ${{ matrix.rust }} cargo test --all
39
- if: matrix.os != 'ubuntu-20.04' # setrlimit64 error in the CI container
+ if: matrix.os != 'ubuntu-24.04' # setrlimit64 error in the CI container
0 commit comments