Skip to content

feature: make qpc container compatible with toolbox #362

feature: make qpc container compatible with toolbox

feature: make qpc container compatible with toolbox #362

Workflow file for this run

name: Test QPC
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
type:
[
manpage-test,
lint,
test-coverage,
]
steps:
- name: Check out repository code
uses: actions/checkout@v2
with:
fetch-depth: 0 # fetches all commits/tags
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.11
uses: actions/[email protected]
with:
python-version: "3.11"
cache: "poetry"
cache-dependency-path: "poetry.lock"
- name: Install dependencies
run: poetry install --with build
- name: Test phase
run: make ${{ matrix.type }}
- name: Upload coverage to Codecov
uses: codecov/[email protected]