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