Skip to content

Add release github action #44

Add release github action

Add release github action #44

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