qBittorrent/.github/workflows/ci_file_health.yaml

26 lines
515 B
YAML
Raw Normal View History

2021-08-12 20:45:50 +03:00
name: CI - File health
2021-02-04 11:15:31 +03:00
on: [pull_request, push]
permissions: {}
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: ${{ github.head_ref != '' }}
jobs:
ci:
name: Check
runs-on: ubuntu-latest
steps:
2021-08-14 09:54:15 +03:00
- name: Checkout repository
uses: actions/checkout@v3
2021-08-14 09:56:37 +03:00
- name: Install tools
2022-08-19 07:59:13 +03:00
uses: actions/setup-python@v4
with:
python-version: "*"
- name: Check files
uses: pre-commit/action@v3.0.0