Skip to content
Merged
Show file tree
Hide file tree
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
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
name: Check
runs-on: ubuntu-latest
timeout-minutes: 15
permissions:
contents: read
steps:
- uses: actions/checkout@v5

Expand Down Expand Up @@ -63,6 +65,8 @@ jobs:
name: Security Audit
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- uses: actions/checkout@v5

Expand Down Expand Up @@ -92,6 +96,8 @@ jobs:
needs: [check]
runs-on: ${{ matrix.os }}
timeout-minutes: 45
permissions:
contents: read
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -149,6 +155,9 @@ jobs:
needs: [check]
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: read
actions: write # For uploading artifacts
steps:
- uses: actions/checkout@v5

Expand Down Expand Up @@ -199,6 +208,8 @@ jobs:
needs: [check]
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
contents: read
steps:
- uses: actions/checkout@v5

Expand All @@ -221,6 +232,8 @@ jobs:
needs: [check]
runs-on: ubuntu-latest
timeout-minutes: 25
permissions:
contents: read
steps:
- uses: actions/checkout@v5

Expand Down Expand Up @@ -252,6 +265,8 @@ jobs:
needs: [test]
runs-on: ubuntu-latest
timeout-minutes: 25
permissions:
contents: read
steps:
- uses: actions/checkout@v5

Expand Down Expand Up @@ -291,6 +306,8 @@ jobs:
needs: [check, security, test, coverage, msrv, benchmark]
runs-on: ubuntu-latest
if: always()
permissions:
contents: read
steps:
- name: Check all jobs
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
name: Build Release (${{ matrix.target }})
runs-on: ${{ matrix.os }}
timeout-minutes: 45
permissions:
contents: read
actions: write # For uploading artifacts
strategy:
fail-fast: false
matrix:
Expand Down
Loading