Sampling #62
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: Testing | |
on: | |
pull_request: | |
branches: [ "main" ] | |
workflow_call: | |
permissions: | |
contents: write | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
# - name: Install Act dependencies | |
# if: ${{ env.ACT }} | |
# run: | | |
# apt update -qq > /dev/null | |
# apt install apt-utils -y -qq > /dev/null | |
# apt remove python3 | |
# apt install python3.11 python3-venv pipx -y | |
- uses: actions/checkout@v4 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
cache: 'poetry' | |
- name: Install dependencies | |
run: poetry install --with dev | |
- name: Test with pytest | |
run: | | |
poetry run coverage run -m pytest | |
poetry run coverage report -m | |
poetry run coverage html | |
- name: Share coverage report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage-report | |
path: htmlcov/ |