Updating dependencies to fix vulnerability #144
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: kuksa_val_unittests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
paths: | |
- ".github/workflows/kuksa_val_unittest.yml" | |
- "kuksa-val-server/**" | |
- "kuksa_certificates/**" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
buildAndTest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Unit test | |
uses: ./.github/actions/unit-test | |
- name: listing test results | |
run: ls out | |
- name: Upload unittests artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: unittest | |
path: ${{github.workspace}}/out | |
- name: Publish Test Report | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ${{github.workspace}}/out/all_targets.info | |
flags: unittests # optional | |
name: codecov-umbrella # optional | |
fail_ci_if_error: true # optional (default = false) | |
verbose: true # optional (default = false) |