1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-23 21:17:45 +00:00

Separate out jobs in workflow

This commit is contained in:
Joshua Goins 2024-04-28 07:19:58 -04:00
parent 6f5831e60d
commit 17815b3441

View file

@ -10,15 +10,26 @@ env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
jobs: jobs:
build: checkout:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
reuse:
runs-on: ubuntu-latest
needs: checkout
steps:
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v3
build:
runs-on: ubuntu-latest
needs: checkout
steps:
- name: Build - name: Build
run: cargo build --verbose run: cargo build --verbose
- name: Run tests - name: Run tests
run: cargo test --verbose run: cargo test --verbose
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v3