6arelyFuture a560cc9231
All checks were successful
Docker Image CI / build (push) Successful in 40s
build: test ubuntu-22.04
2024-07-01 16:54:04 +00:00

32 lines
612 B
YAML

name: Docker Image CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-22.04
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