test
This commit is contained in:
commit
61b9dec47b
2 changed files with 17 additions and 0 deletions
14
.forgejo/workflows/build.yml
Normal file
14
.forgejo/workflows/build.yml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
name: "Build Test Image"
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'master'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_act:
|
||||||
|
runs-on: 'ubuntu-latest'
|
||||||
|
steps:
|
||||||
|
- name: test
|
||||||
|
run: |
|
||||||
|
docker ps
|
3
Dockerfile
Normal file
3
Dockerfile
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
FROM alpine:latest
|
||||||
|
|
||||||
|
CMD ["echo", "Hello World"]
|
Loading…
Reference in a new issue