Skip to content

workflow modif: python version in test #2

workflow modif: python version in test

workflow modif: python version in test #2

Workflow file for this run

name: Run Tests
on: [push]
jobs:
unit:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.10.13
- name: Install pipenv
run: pip install pipenv
- name: Run tests
run: |
cd tests
pipenv install
pipenv run pytest -v