Skip to content

test: Allow integration and unit tests to run against EOL or desired python version #94

test: Allow integration and unit tests to run against EOL or desired python version

test: Allow integration and unit tests to run against EOL or desired python version #94

Workflow file for this run

name: Linting Actions
on:
pull_request: null
push:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v4
- name: setup python 3
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: install package
run: make dev-install
- name: run linter
run: make lint