Add shithub actions smoke workflow
Authored by
mfwolffe <wolffemf@dukes.jmu.edu>
- SHA
f1d861b6f7c5f3de059a121129918f628469a937- Parents
-
7edece0 - Tree
1f5ddfd
f1d861b
f1d861b6f7c5f3de059a121129918f628469a9377edece0
1f5ddfd| Status | File | + | - |
|---|---|---|---|
| A |
.shithub/workflows/smoke.yml
|
16 | 0 |
.shithub/workflows/smoke.ymladded@@ -0,0 +1,16 @@ | ||
| 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' | |