did all the things to make it work
This commit is contained in:
Techno Tim
2024-01-24 22:26:38 -06:00
committed by GitHub
parent edf0c9eebd
commit e2e9881f0f
10 changed files with 155 additions and 146 deletions

View File

@@ -8,8 +8,11 @@ on:
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: [lint]
needs: [pre, lint]