Skip to content

Simplifing dependencies #61

Simplifing dependencies

Simplifing dependencies #61

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.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
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