2021-08-12 20:45:50 +03:00
|
|
|
name: CI - File health
|
2020-10-26 19:31:25 +03:00
|
|
|
|
2021-02-04 11:15:31 +03:00
|
|
|
on: [pull_request, push]
|
2020-10-26 19:31:25 +03:00
|
|
|
|
2022-02-25 08:34:28 +03:00
|
|
|
concurrency:
|
2022-03-02 08:26:13 +03:00
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
2022-02-25 08:34:28 +03:00
|
|
|
cancel-in-progress: ${{ github.head_ref != '' }}
|
|
|
|
|
2020-10-26 19:31:25 +03:00
|
|
|
jobs:
|
2021-08-19 06:21:34 +03:00
|
|
|
ci:
|
|
|
|
name: Check
|
2021-08-12 20:55:43 +03:00
|
|
|
runs-on: ubuntu-latest
|
2020-10-26 19:31:25 +03:00
|
|
|
steps:
|
2021-08-14 09:54:15 +03:00
|
|
|
- name: Checkout repository
|
2022-03-02 22:39:35 +03:00
|
|
|
uses: actions/checkout@v3
|
2020-10-26 19:31:25 +03:00
|
|
|
|
2021-08-14 09:56:37 +03:00
|
|
|
- name: Install tools
|
2022-03-02 22:41:43 +03:00
|
|
|
uses: actions/setup-python@v3
|
2020-10-26 19:31:25 +03:00
|
|
|
|
2021-08-19 06:21:34 +03:00
|
|
|
- name: Check files
|
2022-06-11 07:25:12 +03:00
|
|
|
uses: pre-commit/action@v3.0.0
|