ci: run pre-commit steps as CI checks
This commit is contained in:
parent
0cb41563f4
commit
bb3e32a896
1 changed files with 35 additions and 0 deletions
35
.forgejo/workflows/pull-request.yml
Normal file
35
.forgejo/workflows/pull-request.yml
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
on: [pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
static-analysis:
|
||||||
|
runs-on: runner-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Linting
|
||||||
|
run: pipx run pre-commit run ruff -a
|
||||||
|
- name: Format
|
||||||
|
run: pipx run pre-commit run ruff-format -a
|
||||||
|
- name: Validate Yaml
|
||||||
|
run: pipx run pre-commit run check-yaml -a
|
||||||
|
- name: Validate shell scripts
|
||||||
|
run: pipx run pre-commit run shellcheck -a
|
||||||
|
tests:
|
||||||
|
runs-on: runner-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: https://github.com/astral-sh/setup-uv@v3
|
||||||
|
- name: Tests
|
||||||
|
run: |
|
||||||
|
uv install .
|
||||||
|
pipx run pre-commit run pytest -a
|
||||||
|
export-trace:
|
||||||
|
runs-on: runner-latest
|
||||||
|
needs: [static-analysis]
|
||||||
|
steps:
|
||||||
|
- uses: https://forge.karnov.club/marc/opentelemetry-trace-export-forgejo-action@main
|
||||||
|
with:
|
||||||
|
otlp-endpoint: "http://otel.home.karnov.club:4318"
|
||||||
|
forgejo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
forgejo-base-url: ${{ env.GITHUB_SERVER_URL }}
|
||||||
|
run-id: ${{ env.GITHUB_RUN_NUMBER }}
|
||||||
|
repo-name: ${{ env.GITHUB_REPOSITORY }}
|
Loading…
Reference in a new issue