Skip to content

Merge pull request #65 from janeklb/jlb/python-12 #24

Merge pull request #65 from janeklb/jlb/python-12

Merge pull request #65 from janeklb/jlb/python-12 #24

Workflow file for this run

name: Lint and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Lint and Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
make install-dev
- name: Lint
run: make lint
- name: Test and check coverage
run: make coverage