test-fest/.forgejo/workflows/demo.yaml

18 lines
295 B
YAML
Raw Normal View History

2024-09-10 12:12:30 +00:00
on:
push:
schedule:
2024-09-10 12:15:56 +00:00
- cron: "*/5 * * * *"
2024-09-10 08:15:45 +00:00
jobs:
2024-09-10 13:32:46 +00:00
better_name:
strategy:
matrix:
package:
- 1.0
- 1.2
2024-09-10 08:15:45 +00:00
runs-on: docker
steps:
2024-09-10 13:32:46 +00:00
- run: echo All {{ matrix.package }}
2024-09-10 12:39:33 +00:00
- uses: actions/checkout@v4
with:
fetch-depth: 0