Skip to content

Don't use locale... It's not supported in GitHub actions #29

Don't use locale... It's not supported in GitHub actions

Don't use locale... It's not supported in GitHub actions #29

Workflow file for this run

name: Lint
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run linting
run: |
make lint