Skip to content

feat: use arm runner branch for testing #387

feat: use arm runner branch for testing

feat: use arm runner branch for testing #387

name: pytest-coverage
on:
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip poetry
poetry install
- name: Get test coverage and fail if total coverage under 80 percent
run: |
poetry run pytest --cov argowrapper test --cov-fail-under=80