Skip to content

feat: set python version to 3.9 #216

feat: set python version to 3.9

feat: set python version to 3.9 #216

Workflow file for this run

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