Skip to content

Adding pre-commit with formatting, linting, and tests. (#15) #7

Adding pre-commit with formatting, linting, and tests. (#15)

Adding pre-commit with formatting, linting, and tests. (#15) #7

Workflow file for this run

name: Linting
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: make venv
- name: Run Static Analysis
run: make lint