chore(deps): update github.com/rcrowley/go-metrics digest to 65e299d #1399
This file contains hidden or 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: Run unit tests | |
on: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
branches: | |
- "master" | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build unit test image | |
run: docker compose build vuln4shift_unit_tests | |
- name: Run unit tests | |
run: docker compose run vuln4shift_unit_tests | |
- name: Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ./coverage.txt | |
flags: unittests | |
name: codecov-umbrella | |
verbose: true | |
- name: Cleanup | |
run: docker compose down | |
- name: Validate Grafana dashboards | |
run: ./scripts/validate_dashboards.py ./monitoring/grafana/dashboards/ |