mirror of
https://github.com/google/googletest.git
synced 2025-12-13 07:00:00 +08:00
12 lines
351 B
YAML
12 lines
351 B
YAML
# https://docs.github.com/en/actions
|
|
# https://docs.github.com/en/actions/use-cases-and-examples/building-and-testing/building-and-testing-python
|
|
# https://docs.astral.sh/ruff
|
|
name: lint_python
|
|
on: [pull_request, push]
|
|
jobs:
|
|
lint_python:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: astral-sh/ruff-action@v3
|