We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96aec12 commit 1a00b5aCopy full SHA for 1a00b5a
.github/workflows/ci.yaml
@@ -8,9 +8,7 @@ on:
8
jobs:
9
rustfmt:
10
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
+ runs-on: ubuntu-latest
14
if: github.ref == 'refs/heads/main'
15
steps:
16
- name: Checkout
@@ -19,7 +17,9 @@ jobs:
19
17
20
18
test:
21
name: Run linter
22
- runs-on: ubuntu-latest
+ # this is pretty weird, but `winit` requires a backend on linux
+ # and we don't specify that at all and just let end users do that
+ runs-on: windows-latest
23
24
env:
25
RUSTFLAGS: -D warnings
0 commit comments