shithub
mfwolffe
/
scratch
/
Sign in
Sign up
Code
Issues
Pull requests
1
Actions
Projects
Wiki
Security and quality
Insights
scratch
Public
Watch
1
Fork
0
Star
0
scratch
/
.shithub
/
workflows
/
smoke.yml
YAML · 287 bytes
Raw
Blame
History
1
name
:
Scratch 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
:
|
15
test -f README.md
16
printf 'shithub actions smoke passed\n'
17