Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
format:
name: Format
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4

Expand All @@ -33,6 +35,9 @@ jobs:
name: Clippy
runs-on: ubuntu-latest
needs: format
permissions:
contents: read
actions: write
steps:
- uses: actions/checkout@v4

Expand All @@ -51,6 +56,8 @@ jobs:
name: REUSE Compliance
runs-on: ubuntu-latest
needs: clippy
permissions:
contents: read
steps:
- uses: actions/checkout@v4

Expand All @@ -61,6 +68,8 @@ jobs:
name: Security Audit
runs-on: ubuntu-latest
needs: reuse
permissions:
contents: read
steps:
- uses: actions/checkout@v4

Expand All @@ -86,6 +95,9 @@ jobs:
name: Test
runs-on: ${{ matrix.os }}
needs: audit
permissions:
contents: read
actions: write
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
Expand Down Expand Up @@ -138,6 +150,9 @@ jobs:
name: Coverage
runs-on: ubuntu-latest
needs: test
permissions:
contents: read
actions: write
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -165,6 +180,9 @@ jobs:
name: Documentation
runs-on: ubuntu-latest
needs: format
permissions:
contents: read
actions: write
steps:
- uses: actions/checkout@v4

Expand All @@ -181,6 +199,9 @@ jobs:
name: Build
runs-on: ubuntu-latest
needs: format
permissions:
contents: read
actions: write
steps:
- uses: actions/checkout@v4

Expand All @@ -197,6 +218,9 @@ jobs:
name: Benchmark
runs-on: ubuntu-latest
needs: format
permissions:
contents: read
actions: write
steps:
- uses: actions/checkout@v4

Expand Down
Loading