maint: test
All checks were successful
Docker Image CI / build (push) Successful in 1m25s

This commit is contained in:
2024-07-01 17:25:12 +00:00
parent bafc8834f4
commit ae406e79ab

28
.gitea/workflows/test.yml Normal file
View File

@@ -0,0 +1,28 @@
name: Docker Image CI
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Find out interesting things about this runner
run: |
cat /etc/os-release
- name: Check out files
uses: actions/checkout@v4
- name: Install malware
run: |
apt-get install curl
- name: Install Docker
run: |
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
- name: Docker moment
run: docker run hello-world