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

25 lines
472 B
YAML
Raw Normal View History

2023-03-24 09:18:51 +00:00
name: CI
on:
2023-03-24 09:28:29 +00:00
- push
2023-03-24 09:18:51 +00:00
jobs:
build:
runs-on: ubuntu-latest
2023-03-24 14:29:28 +00:00
container: catthehacker/ubuntu:act-latest
2023-03-24 21:12:40 +00:00
strategy:
matrix:
things: [1, 2, 3, 4, 5]
2023-03-24 09:18:51 +00:00
steps:
- uses: actions/checkout@v3
2023-03-24 22:12:29 +00:00
- name: Cache stuff
uses: actions/cache@v3
with:
path: .
key: stuff
2023-03-24 21:12:40 +00:00
- run: sleep 5
2023-03-24 14:31:10 +00:00
- name: Hello world
run: docker run hello-world
2023-03-24 14:33:32 +00:00
- run: docker ps
- run: docker container ls
2023-03-24 22:12:29 +00:00