Skip to content

Update locales (#83) #84

Update locales (#83)

Update locales (#83) #84

Workflow file for this run

name: Code Analysis
on:
push:
env:
PYTHON_VERSION: "3.12"
jobs:
code-analysis:
runs-on: ubuntu-latest
steps:
- name: Checkout codebase
uses: actions/checkout@v4
- name: Install hatch
run: pipx install hatch
- name: Generate Constraints file
run: make constraints-mxdev.txt
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip'
- name: "Install Environment"
run: hatch env create
- name: "Run checks"
run: hatch run lint