mirror of
https://github.com/techno-tim/k3s-ansible.git
synced 2025-12-28 19:52:40 +01:00
19 lines
304 B
YAML
19 lines
304 B
YAML
---
|
|
name: "CI"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths-ignore:
|
|
- '**/README.md'
|
|
jobs:
|
|
pre:
|
|
uses: ./.github/workflows/cache.yml
|
|
lint:
|
|
uses: ./.github/workflows/lint.yml
|
|
needs: [cache]
|
|
test:
|
|
uses: ./.github/workflows/test.yml
|
|
needs: [cache, lint]
|