Skip to content

Pylint updates

Pylint updates #14

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10.12, 3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install venv and dependencies
run: ./setup.sh
- name: pylint
run: ./run-pylint.sh
- name: Tests
run: ./run-tests.sh