pspurlock is testing with dagger 🗡️ #44
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: dagger | |
| run-name: ${{ github.actor }} is testing with dagger 🗡️ | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| Test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Dagger Engine | |
| uses: dagger/dagger-for-github@8.0.0 | |
| with: | |
| version: latest | |
| - name: test-docker | |
| working-directory: ./docker/tests | |
| run: dagger call all | |
| - name: test-git-cliff | |
| working-directory: ./git-cliff/tests | |
| run: dagger call all | |
| - name: test-goreleaser | |
| working-directory: ./goreleaser/tests | |
| run: dagger call all | |
| - name: test-markdownlint | |
| working-directory: ./markdownlint/tests | |
| run: dagger call all | |
| - name: test-python | |
| working-directory: ./python/tests | |
| run: dagger call all | |
| - name: test-yamllint | |
| working-directory: ./yamllint/tests | |
| run: dagger call all |