This commit is contained in:
parent
a7faaf82e2
commit
efa0c6ff30
2 changed files with 12 additions and 9 deletions
|
|
@ -1,9 +0,0 @@
|
|||
name: Hello
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
hello:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- run: echo "hello world"
|
||||
12
.forgejo/workflows/test-step.yml
Normal file
12
.forgejo/workflows/test-step.yml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
name: Test Step
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- name: Hello
|
||||
run: echo "hello"
|
||||
- name: Docker version
|
||||
run: docker version
|
||||
Loading…
Reference in a new issue