1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-23 13:17:44 +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
jobs:
build:
checkout:
runs-on: ubuntu-latest
steps:
- 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
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v3