Skip to content

Prepare for release of 1.0.2 #34

Prepare for release of 1.0.2

Prepare for release of 1.0.2 #34

Workflow file for this run

name: Validate
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
name: 'Lint'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12-dev'
- name: Install Python dependencies
run: |
python3 -m pip install -r requirements-dev.txt
- name: Install Package
run: |
python3 -m pip install -e .
- name: Lint sources
run: |
make PYTHON=python${{matrix.python_version}} lint