fgof-watch Public
| 1 | name: Smoke |
| 2 | |
| 3 | on: |
| 4 | push: |
| 5 | branches: [trunk] |
| 6 | workflow_dispatch: |
| 7 | |
| 8 | jobs: |
| 9 | green: |
| 10 | runs-on: ubuntu-latest |
| 11 | steps: |
| 12 | - uses: actions/checkout@v4 |
| 13 | - name: Verify checkout |
| 14 | run: test -f README.md || test -f readme.md || pwd |
| 15 | - name: Smoke |
| 16 | run: printf 'shithub actions smoke passed\n' |
| 17 |