Skip to content

fix: add action in pod name #7

fix: add action in pod name

fix: add action in pod name #7

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: ["main"]
permissions:
contents: read
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
cache-dependency-path: requirements-dev.txt
- name: Install dev dependencies
run: pip install -r requirements-dev.txt
- name: Ruff lint
run: ruff check .
- name: Ruff format
run: ruff format --check .