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
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ jobs:
name: Code linting
runs-on: ubuntu-latest
needs: [deps]
permissions:
contents: read
strategy:
matrix:
command:
Expand All @@ -78,6 +80,7 @@ jobs:
name: Code linting Report
runs-on: ubuntu-latest
needs: [lint]
permissions: {}
if: ${{ always() }}
steps:
- name: Linting fail
Expand All @@ -88,6 +91,8 @@ jobs:
name: Unit Tests
runs-on: ubuntu-latest
needs: [deps]
permissions:
contents: read
strategy:
matrix:
shardIndex: [1, 2, 3]
Expand Down Expand Up @@ -121,6 +126,8 @@ jobs:
name: Merge Coverage Reports
runs-on: ubuntu-latest
needs: [test]
permissions:
contents: read
steps:
- name: Checkout repo
uses: actions/checkout@v6
Expand Down Expand Up @@ -150,6 +157,7 @@ jobs:
name: Unit Tests Report
runs-on: ubuntu-latest
needs: [test, coverage]
permissions: {}
if: ${{ always() }}
steps:
- name: Unit tests fail
Expand Down
Loading