k3s-ansible/.github/workflows/ci.yml

19 lines
309 B
YAML

---
name: "CI"
on:
pull_request:
types:
- opened
- synchronize
paths-ignore:
- '**/README.md'
jobs:
pre:
uses: ./.github/workflows/cache.yml
lint:
uses: ./.github/workflows/lint.yml
needs: [pre]
test:
uses: ./.github/workflows/test.yml
needs: [pre, lint]