Skip to content

Update copyright and python version #52

Update copyright and python version

Update copyright and python version #52

Workflow file for this run

---
name: Github CI Lint
on: push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install test dependencies
run: |
pip install -e ".[dev]"
pip install ".[lint]"
- name: Lint with pylint
run: nox -s pylint