django-rest-framework/.github/workflows/pre-commit.yml

25 lines
393 B
YAML
Raw Normal View History

name: pre-commit
on:
push:
branches:
- master
pull_request:
jobs:
pre-commit:
2023-06-20 14:43:33 +03:00
runs-on: ubuntu-latest
steps:
2023-06-20 14:43:33 +03:00
- uses: actions/checkout@v3
with:
fetch-depth: 0
2023-06-20 14:43:33 +03:00
- uses: actions/setup-python@v4
with:
2023-06-20 14:43:33 +03:00
python-version: "3.10"
2023-06-20 14:43:33 +03:00
- uses: pre-commit/action@v3.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}