Skip to content

Commit 5cf1416

Browse files
committed
move CI var uses after their declaration
1 parent 451c33c commit 5cf1416

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ defaults:
1818

1919
jobs:
2020
build:
21-
runs-on: ${{ matrix.os }}
22-
env:
23-
RUST_BACKTRACE: 1
24-
HOST_TARGET: ${{ matrix.host_target }}
2521
strategy:
2622
fail-fast: false
2723
matrix:
@@ -32,6 +28,10 @@ jobs:
3228
host_target: x86_64-apple-darwin
3329
- os: windows-latest
3430
host_target: i686-pc-windows-msvc
31+
runs-on: ${{ matrix.os }}
32+
env:
33+
RUST_BACKTRACE: 1
34+
HOST_TARGET: ${{ matrix.host_target }}
3535
steps:
3636
- uses: actions/checkout@v3
3737

0 commit comments

Comments
 (0)