refactor: move check_post_number
from base crawler to xenforo crawler
#574
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ruff | |
on: [ push, pull_request ] | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
- name: ruff lint | |
uses: astral-sh/ruff-action@v3 | |
with: | |
version: "0.8.0" | |
- name: ruff format check | |
uses: astral-sh/ruff-action@v3 | |
with: | |
args: "format --check" | |
version: "0.8.0" |