webexmemebot/.github/workflows/ci.yml

25 lines
632 B
YAML
Raw Normal View History

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