We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
check-matrix
check
1 parent c4f2c3e commit 1059ce9Copy full SHA for 1059ce9
1 file changed
.github/workflows/ci.yml
@@ -74,6 +74,18 @@ jobs:
74
- name: Check all features source
75
run: cargo check --target ${{ matrix.target }} --all-features --workspace --all-targets
76
77
+ check-matrix:
78
+ name: Check if all checks succeeded
79
+ if: always()
80
+ needs:
81
+ - check
82
+ runs-on: ubuntu-latest
83
+ steps:
84
+ - name: Decide whether the needed jobs succeeded or failed
85
+ uses: re-actors/alls-green@release/v1
86
+ with:
87
+ jobs: ${{ toJSON(needs) }}
88
+
89
tests-softhsm:
90
name: Run tests against SoftHSM
91
runs-on: ubuntu-latest
0 commit comments