Skip to content

chore: added ruff linter (#6) #30

chore: added ruff linter (#6)

chore: added ruff linter (#6) #30

Workflow file for this run

on: push
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: check out repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
- name: Lint
uses: astral-sh/ruff-action@v3
with:
version: 0.8.6
args: check
src: "./rfc1924"
- name: Test with pytest
run: python -m pytest --doctest-modules