We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04727d0 commit 84d6f05Copy full SHA for 84d6f05
.github/workflows/check.yml
@@ -10,7 +10,7 @@ env:
10
CARGO_TERM_COLOR: always
11
12
jobs:
13
- debug-build-test:
+ debug-build:
14
runs-on: windows-latest
15
16
steps:
@@ -30,6 +30,21 @@ jobs:
30
release-build:
31
32
33
+ steps:
34
+ - uses: actions/checkout@v4
35
+ - name: Install latest nightly
36
+ uses: actions-rs/toolchain@v1
37
+ with:
38
+ toolchain: nightly
39
+ override: true
40
+ components: rustfmt, clippy
41
+
42
+ - name: Release build
43
+ run: cargo build -r --features skyrim_ae,fallout_4
44
45
+ build-script:
46
+ runs-on: windows-latest
47
48
49
- uses: actions/checkout@v4
50
- name: Install latest nightly
0 commit comments