Skip to content

Commit

Permalink
ci: Checkout goes first
Browse files Browse the repository at this point in the history
  • Loading branch information
KrystalDelusion committed Mar 4, 2024
1 parent 1783a42 commit 64c9a3d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
os: [ubuntu-20.04, macos-13]
fail-fast: false
steps:
- name: Setup environment
uses: ./.github/actions/setup-build-env

- name: Checkout Yosys
uses: actions/checkout@v4

- name: Setup environment
uses: ./.github/actions/setup-build-env

- name: Build
shell: bash
run: |
Expand Down Expand Up @@ -60,12 +60,12 @@ jobs:
matrix:
os: [ubuntu-20.04, macos-13]
steps:
- name: Setup environment
uses: ./.github/actions/setup-build-env

- name: Checkout Yosys
uses: actions/checkout@v4

- name: Setup environment
uses: ./.github/actions/setup-build-env

- name: Get iverilog
shell: bash
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ jobs:
cpp_std: 'c++11'
fail-fast: false
steps:
- name: Checkout Yosys
uses: actions/checkout@v4

- name: Setup environment
uses: ./.github/actions/setup-build-env

Expand All @@ -58,9 +61,6 @@ jobs:
$CC --version
$CXX --version
- name: Checkout Yosys
uses: actions/checkout@v4

- name: Build
shell: bash
run: |
Expand Down

0 comments on commit 64c9a3d

Please sign in to comment.