Skip to content

Update tests to reflect changes in the code #535

Update tests to reflect changes in the code

Update tests to reflect changes in the code #535

Workflow file for this run

name: General Linting
on:
pull_request:
types: [opened, synchronize, edited]
push:
branches:
- 'main'
jobs:
code-linting:
name: General Code Linting
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Setup Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
architecture: x64
- name: Install dependencies
run: uv sync
- name: Run black
run: uv run black --diff --check .
- name: Run ruff
run: uv run ruff check financedatabase
markdown-link-check:
name: Markdown Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Check out the code
- name: Lint Code Base
uses: docker://avtodev/markdown-lint:v1