Skip to content

Update actions/setup-python action to v5 #14

Update actions/setup-python action to v5

Update actions/setup-python action to v5 #14

Workflow file for this run

name: Python package
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
# You can use PyPy versions in python-version.
# For example, pypy2 and pypy3
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# You can test your matrix by printing the current Python version
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-test.txt
- name: Running Confidence Check Tests
run: python -m pytest ics_to_csv_test.py