Skip to content

feat: add pull request template #27

feat: add pull request template

feat: add pull request template #27

Workflow file for this run

name: Lint and format check
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
linting:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python V3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
make devtools
- name: Lint with Pylint
run: |
make lint