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 21:12:40 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
things: [1, 2, 3, 4, 5]
|
2023-03-24 09:18:51 +00:00
|
|
|
steps:
|
2023-03-25 14:50:58 +00:00
|
|
|
- uses: "https://github.com/actions/checkout@v3"
|
2023-04-10 14:07:32 +01:00
|
|
|
- name: Hash the files
|
|
|
|
uses: theowenyoung/folder-hash@v3
|
|
|
|
id: hash-stuff
|
|
|
|
with:
|
2023-04-10 14:09:10 +01:00
|
|
|
path: .gitea/workflows/
|
2023-03-24 22:12:29 +00:00
|
|
|
- name: Cache stuff
|
2023-03-25 14:50:58 +00:00
|
|
|
uses: "https://github.com/actions/cache@v3"
|
2023-03-24 22:12:29 +00:00
|
|
|
with:
|
|
|
|
path: .
|
2023-04-10 14:07:32 +01:00
|
|
|
key: stuff-${{ steps.hash-stuff.outputs.hash }}
|
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
|
|
|
|