Skip to content

bold

bold #18

Workflow file for this run

name: Lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install packages
run: make install
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: lint
run: make lint
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt