Skip to content

⬆️ deps: Update actions/setup-python action to v6 #319

⬆️ deps: Update actions/setup-python action to v6

⬆️ deps: Update actions/setup-python action to v6 #319

Workflow file for this run

name: Lint and Format
on:
push:
branches: [main]
pull_request:
merge_group:
workflow_dispatch:
jobs:
lint-and-fmt:
runs-on: ubuntu-latest
strategy:
matrix:
# Only run linter and formatter on minimum supported Python version
python-version: ['3.9']
architecture: ['x64']
name: lint and fmt - Python ${{ matrix.python-version }} on ${{ matrix.architecture }}
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install prettier
run: |
npm install -g prettier
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Install just
uses: extractions/setup-just@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: |
just ci-install
- name: lint
run: |
just ci-lint
- name: format check
run: |
just ci-fmt-check