Skip to content

Commit

Permalink
[ci] Put checkout action first
Browse files Browse the repository at this point in the history
  • Loading branch information
flysand7 committed Oct 5, 2024
1 parent 0ee5d54 commit 90a1d16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ jobs:
name: Build (ubuntu)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ilammy/setup-nasm@v1
- uses: laytan/setup-odin@v2
with:
Expand All @@ -16,7 +17,6 @@ jobs:
- uses: leafo/gh-actions-lua@v10
with:
luaVersion: "5.4.1"
- uses: actions/checkout@v2
- name: Build CLI
run: lua build.lua
- name: Test disassembly
Expand All @@ -27,6 +27,7 @@ jobs:
name: Build (windows)
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: ilammy/setup-nasm@v1
- uses: ilammy/msvc-dev-cmd@v1
- uses: laytan/setup-odin@v2
Expand All @@ -37,7 +38,6 @@ jobs:
- uses: leafo/gh-actions-lua@v10
with:
luaVersion: "5.4.1"
- uses: actions/checkout@v2
- name: Build CLI
run: lua build.lua
- name: Test disassembly
Expand Down

0 comments on commit 90a1d16

Please sign in to comment.