Skip to content

Commit

Permalink
Checkout before using local action
Browse files Browse the repository at this point in the history
Otherwise the repo won't be available locally yet.
  • Loading branch information
Thomasdezeeuw committed Aug 11, 2023
1 parent 3a4dc25 commit cec18d2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/heph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
timeout-minutes: 10
if: false # FIXME.
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/test
Sanitiser:
runs-on: ubuntu-latest
Expand All @@ -37,6 +38,7 @@ jobs:
matrix:
sanitiser: [address, leak, memory, thread]
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/test_sanitizer
with:
sanitizer: ${{ matrix.sanitiser }}
2 changes: 2 additions & 0 deletions .github/workflows/http.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
timeout-minutes: 10
if: false # FIXME.
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/test
Sanitiser:
runs-on: ubuntu-latest
Expand All @@ -34,6 +35,7 @@ jobs:
matrix:
sanitiser: [address, leak, memory, thread]
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/test_sanitizer
with:
sanitizer: ${{ matrix.sanitiser }}
1 change: 1 addition & 0 deletions .github/workflows/inbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
matrix:
sanitiser: [address, leak, memory, thread]
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/test_sanitizer
with:
sanitizer: ${{ matrix.sanitiser }}
2 changes: 2 additions & 0 deletions .github/workflows/remote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
timeout-minutes: 10
if: false # FIXME.
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/test
Sanitiser:
runs-on: ubuntu-latest
Expand All @@ -34,6 +35,7 @@ jobs:
matrix:
sanitiser: [address, leak, memory, thread]
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/test_sanitizer
with:
sanitizer: ${{ matrix.sanitiser }}
2 changes: 2 additions & 0 deletions .github/workflows/rt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
timeout-minutes: 10
if: false # FIXME.
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/test
Sanitiser:
runs-on: ubuntu-latest
Expand All @@ -34,6 +35,7 @@ jobs:
matrix:
sanitiser: [address, leak, memory, thread]
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/test_sanitizer
with:
sanitizer: ${{ matrix.sanitiser }}
1 change: 0 additions & 1 deletion .github/workflows/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ description: 'Run tests using `make test`.'
runs:
using: 'composite'
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
- name: Run tests
run: make test
1 change: 0 additions & 1 deletion .github/workflows/test_sanitizer/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ inputs:
runs:
using: 'composite'
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
with:
components: rust-src
Expand Down

0 comments on commit cec18d2

Please sign in to comment.