Skip to content

✨ feat: parse Returns #5

✨ feat: parse Returns

✨ feat: parse Returns #5

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:
python-version: ["3.8"]
name: lint and format - Python ${{ matrix.python-version }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install just
uses: extractions/setup-just@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Initialize venv and install packages
run: |
just create-venv
just install
- name: lint
run: |
just lint
- name: format check
run: |
just fmt