Skip to content

Commit e94b595

Browse files
committed
Reenable CI
1 parent 9e2f58d commit e94b595

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

.github/workflows/rust-ci.yml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@ name: CI
1414
jobs:
1515
lint:
1616
name: Lint
17-
if: false
1817
strategy:
1918
matrix:
20-
os: [ubuntu-22.04, windows-2022, macos-14]
19+
os:
20+
- ubuntu-24.04,
21+
- windows-2022,
22+
- macos-14,
23+
- ubuntu-24.04-arm
2124
runs-on: ${{ matrix.os }}
2225
steps:
2326
- uses: actions/checkout@v4
@@ -41,9 +44,9 @@ jobs:
4144
strategy:
4245
matrix:
4346
os:
44-
#- ubuntu-24.04,
45-
#- windows-2022,
46-
#- macos-14,
47+
- ubuntu-24.04,
48+
- windows-2022,
49+
- macos-14,
4750
- ubuntu-24.04-arm
4851
runs-on: ${{ matrix.os }}
4952
steps:
@@ -59,7 +62,7 @@ jobs:
5962
build-android:
6063
name: Build sources
6164
if: false
62-
runs-on: ubuntu-22.04
65+
runs-on: ubuntu-24.04
6366
strategy:
6467
matrix:
6568
job:
@@ -86,15 +89,15 @@ jobs:
8689
8790
deny-check:
8891
name: cargo-deny
89-
runs-on: ubuntu-22.04
92+
runs-on: ubuntu-24.04
9093
steps:
9194
- uses: actions/checkout@v4
9295
- uses: EmbarkStudios/cargo-deny-action@v2
9396

9497
publish-check:
9598
name: Publish Check
9699
if: false
97-
runs-on: ubuntu-22.04
100+
runs-on: ubuntu-24.04
98101
steps:
99102
- uses: actions/checkout@v4
100103
- uses: dtolnay/rust-toolchain@stable
@@ -108,7 +111,7 @@ jobs:
108111
cargo publish --dry-run --manifest-path sadness-generator/Cargo.toml
109112
110113
all:
111-
runs-on: ubuntu-22.04
114+
runs-on: ubuntu-24.04
112115
needs: [lint, test, build-android, deny-check, publish-check]
113116
steps:
114117
- run: echo "All test jobs passed"

0 commit comments

Comments
 (0)