Skip to content

Attribute preservation, RADb mirroring, and Jira diff output (#2) #18

Attribute preservation, RADb mirroring, and Jira diff output (#2)

Attribute preservation, RADb mirroring, and Jira diff output (#2) #18

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
with:
enable-cache: true
- name: Set up Python
run: uv python install
- name: Install dependencies
run: uv sync --frozen
- name: Lint
run: uv run ruff check .
- name: Format check
run: uv run ruff format --check .
- name: Test
run: uv run pytest