Skip to content

Remove Python 2.7 from test list as its no longer supported by CircleCI #54

Remove Python 2.7 from test list as its no longer supported by CircleCI

Remove Python 2.7 from test list as its no longer supported by CircleCI #54

Workflow file for this run

name: python CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7,3.8,3.9,3.12]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ hashFiles('**/requirements.txt') }}
- name: test application
run: make test_ci