Skip to content

Refactor parse dump form label #1558

Refactor parse dump form label

Refactor parse dump form label #1558

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches:
- main
types: [opened, reopened, synchronize]
jobs:
format_check:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
python-version:
- "3.11"
runs-on: ${{ matrix.os }}
name: Run PR Check
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Create Environment and Install Dependencies
run: |
python -m pip install --upgrade uv
uv venv
. .venv/bin/activate
echo PATH=$PATH >> $GITHUB_ENV
uv pip install -r requirements-dev.txt
- name: Run Ruff Format - Formatting Check
run: ruff format ./src
- name: Run Ruff - Linting and Import Sorting Check
if: always()
run: ruff check ./src
# - name: Run mypy - Static Type Checking
# if: always()
# run: mypy ./src --config-file ./pyproject.toml