Skip to content

Fix lint

Fix lint #19

Workflow file for this run

# This workflow will install Python dependencies and build the package.
name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
# Ubuntu 22.04 is the newest version that has Python 3.7 for testing.
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.7
uses: actions/setup-python@v5
with:
python-version: "3.7"
- name: Install dependencies
run: |
pip install hatchling
pip install -r requirements.txt
- name: Build with Hatchling
run: hatchling build