17 lines
295 B
YAML
17 lines
295 B
YAML
on:
|
|
push:
|
|
schedule:
|
|
- cron: "*/5 * * * *"
|
|
jobs:
|
|
better_name:
|
|
strategy:
|
|
matrix:
|
|
package:
|
|
- 1.0
|
|
- 1.2
|
|
runs-on: docker
|
|
steps:
|
|
- run: echo All {{ matrix.package }}
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|