1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-20 19:57:45 +00:00

Nevermind, you can't do something like that with Actiobs

We must use a separate checkout for each parallel step
This commit is contained in:
Joshua Goins 2024-04-28 07:24:28 -04:00
parent 17815b3441
commit 2f48964b99

View file

@ -10,17 +10,12 @@ env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
jobs: jobs:
checkout:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
reuse: reuse:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: checkout needs: checkout
steps: steps:
- uses: actions/checkout@v4
- name: REUSE Compliance Check - name: REUSE Compliance Check
uses: fsfe/reuse-action@v3 uses: fsfe/reuse-action@v3
@ -29,6 +24,7 @@ jobs:
needs: checkout needs: checkout
steps: steps:
- uses: actions/checkout@v4
- name: Build - name: Build
run: cargo build --verbose run: cargo build --verbose
- name: Run tests - name: Run tests