chore: updates the base images to UBI minimal #44
Workflow file for this run
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: Code Coverage Check | |
on: | |
pull_request: | |
branches: main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Set up poetry and install | |
uses: ./.github/actions/setup-poetry | |
with: | |
python-version: "3.9" | |
- name: Run tests | |
run: make test-code-cov | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: coverage | |
path: coverage.xml | |