blogue/.forgejo/workflows/ci.yml
Marc Cataford 6034285ce9
Some checks failed
/ export-trace (pull_request) Has been skipped
/ static-analysis (pull_request) Failing after 1m21s
ci: prevent triggers from overlapping
2024-11-15 23:27:01 -05:00

33 lines
1,023 B
YAML

on:
push:
branches: [main]
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
- name: Check types
run: |
pipx install .
pipx run pre-commit run pyright -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 }}