Skip to content

Feat/py312

Feat/py312 #72

Workflow file for this run

name: Continuous builds
on:
push:
branches: [ master, development ]
pull_request:
branches: [ master, development ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Print refs
run: |
echo "github.ref is: ${{ github.ref }}"
echo "github.base_ref is: ${{ github.base_ref }}"
- name: Update pip, install package
run: |
python -m pip install --upgrade pip
echo "Using development dependencies"
pip install .[dev]
- name: Run tests
run: |
./test.sh
- name: Lint with flake8
run: |
pip install flake8
flake8 . --count --exit-zero --show-source --max-line-length=127 --statistics