Skip to content

Update to Python 3.11 #54

Update to Python 3.11

Update to Python 3.11 #54

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
env:
USING_COVERAGE: "3.10"
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make install-dev
make install-test
- name: Run tox
run: |
make tox
- name: Run lint
run: |
make lint
make lint-notebooks