This commit is contained in:
Snoweuph 2024-10-23 22:49:17 +02:00
commit 61b9dec47b
Signed by: Snoweuph
GPG key ID: BEFC41DA223CEC55
2 changed files with 17 additions and 0 deletions

View 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
View file

@ -0,0 +1,3 @@
FROM alpine:latest
CMD ["echo", "Hello World"]