Skip to content

chore(deps-dev): bump ruff from 0.7.3 to 0.7.4 #508

chore(deps-dev): bump ruff from 0.7.3 to 0.7.4

chore(deps-dev): bump ruff from 0.7.3 to 0.7.4 #508

Workflow file for this run

name: beancount-dkb
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install
- name: Lint
run: poetry run task lint
- name: Test
run: poetry run task test