mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-18 14:52:06 +00:00
41 lines
1.0 KiB
YAML
41 lines
1.0 KiB
YAML
name: code check
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "metadata-io/**"
|
|
- "datahub-web-react/**"
|
|
- "metadata-service/war/src/main/resources/boot/policies.json"
|
|
- ".github/workflows/code-checks.yml"
|
|
pull_request:
|
|
branches:
|
|
- "**"
|
|
paths:
|
|
- "metadata-io/**"
|
|
- "datahub-web-react/**"
|
|
- "metadata-service/war/src/main/resources/boot/policies.json"
|
|
- ".github/workflows/code-checks.yml"
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
code_check:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
command: ["check_event_type.py", "check_policies.py"]
|
|
name: run code checks
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out the repo
|
|
uses: acryldata/sane-checkout-action@v3
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.10"
|
|
- name: run check ${{ matrix.command }}
|
|
run: |-
|
|
python .github/scripts/${{ matrix.command }}
|