25 lines
632 B
YAML
Raw Normal View History

2023-07-21 19:24:30 +01:00
name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
2024-04-21 17:20:58 +01:00
- "README.md"
- "LICENSE.md"
- ".gitignore"
- ".github/CODEOWNERS"
- ".github/renovate.json"
- ".github/dependabot.yml"
2023-07-21 19:24:30 +01:00
jobs:
2023-07-21 22:57:14 +01:00
pythonci:
2023-07-21 19:24:30 +01:00
uses: luketainton/gha-workflows/.github/workflows/ci-python.yml@main
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
2023-12-31 17:22:41 +00:00
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
2023-07-21 22:57:14 +01:00
dockerci:
uses: luketainton/gha-workflows/.github/workflows/ci-docker.yml@main
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
2023-12-31 17:22:41 +00:00
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}