[updatecli] Update hermit and pre-commit dependencies (#2643) #599
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test OPA Coverage | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test-coverage: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./security-policies | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Init Hermit | |
run: ../bin/hermit env -r >> $GITHUB_ENV | |
- name: OPA test coverage | |
run: | | |
coverage="$(opa test ./bundle -c | jq '.coverage' | cut -d'.' -f1)%" | |
echo "COVERAGE=$coverage" >> "$GITHUB_ENV" | |
- name: Create Coverage Badge | |
uses: schneegans/dynamic-badges-action@v1.7.0 | |
with: | |
auth: ${{ secrets.GIST_SECRET }} | |
gistID: a7160df46e48dff45b24096de9302d38 | |
filename: csp-security-policies_coverage.json | |
label: coverage | |
message: ${{ (env.COVERAGE) }} | |
namedLogo: Elastic | |
color: green | |
logoColor: lightblue |