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

24 lines
468 B
YAML

name: CI
on:
- push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
things: [1, 2, 3, 4, 5]
steps:
- uses: "https://github.com/actions/checkout@v3"
- name: Cache stuff
uses: "https://github.com/actions/cache@v3"
with:
path: .
key: stuff
- run: sleep 5
- name: Hello world
run: docker run hello-world
- run: docker ps
- run: docker container ls