mirror of
https://github.com/nonebot/nonebot2.git
synced 2026-06-19 11:02:28 +00:00
9b760a489d
Bumps the actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
31 lines
547 B
YAML
31 lines
547 B
YAML
name: Ruff Lint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
paths:
|
|
- "envs/**"
|
|
- "nonebot/**"
|
|
- "packages/**"
|
|
- "tests/**"
|
|
- ".github/actions/setup-python/**"
|
|
- ".github/workflows/ruff.yml"
|
|
- "pyproject.toml"
|
|
- "uv.lock"
|
|
|
|
jobs:
|
|
ruff:
|
|
name: Ruff Lint
|
|
runs-on: ubuntu-latest
|
|
concurrency:
|
|
group: ruff-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
|
|
- name: Run Ruff Lint
|
|
uses: astral-sh/ruff-action@v3
|