actions-playground/.gitea/workflows/ci.yaml

19 lines
355 B
YAML

name: CI
on:
- push
jobs:
build:
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
strategy:
matrix:
things: [1, 2, 3, 4, 5]
steps:
- uses: actions/checkout@v3
- run: sleep 5
- name: Hello world
run: docker run hello-world
- run: docker ps
- run: docker container ls