Skip to content

Commit 1a00b5a

Browse files
committed
changing how ci runs
1 parent 96aec12 commit 1a00b5a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ on:
88
jobs:
99
rustfmt:
1010
name: Check rustfmt
11-
# this is pretty weird, but `winit` requires a backend on linux
12-
# and we don't specify that at all and just let end users do that
13-
runs-on: windows-latest
11+
runs-on: ubuntu-latest
1412
if: github.ref == 'refs/heads/main'
1513
steps:
1614
- name: Checkout
@@ -19,7 +17,9 @@ jobs:
1917

2018
test:
2119
name: Run linter
22-
runs-on: ubuntu-latest
20+
# this is pretty weird, but `winit` requires a backend on linux
21+
# and we don't specify that at all and just let end users do that
22+
runs-on: windows-latest
2323
if: github.ref == 'refs/heads/main'
2424
env:
2525
RUSTFLAGS: -D warnings

0 commit comments

Comments
 (0)