2023-09-18 03:50:54 +01:00
|
|
|
name: test
|
2022-07-18 17:38:06 +01:00
|
|
|
on:
|
2022-07-18 21:05:42 +01:00
|
|
|
workflow_dispatch:
|
2022-07-18 17:40:16 +01:00
|
|
|
push:
|
2022-07-18 17:38:06 +01:00
|
|
|
paths:
|
2022-09-17 03:58:22 +01:00
|
|
|
- "**.yml"
|
2022-07-18 17:40:16 +01:00
|
|
|
pull_request:
|
|
|
|
paths:
|
2022-09-17 03:58:22 +01:00
|
|
|
- "**.yml"
|
2022-07-18 17:40:16 +01:00
|
|
|
|
2022-07-18 17:20:56 +01:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
2022-07-18 04:41:44 +01:00
|
|
|
jobs:
|
2023-09-18 05:09:47 +01:00
|
|
|
test-cache:
|
2023-09-18 05:17:16 +01:00
|
|
|
uses: ./.github/workflows/env.yml
|
2023-09-20 18:08:44 +01:00
|
|
|
with:
|
|
|
|
cache: "true"
|
2023-09-18 05:09:47 +01:00
|
|
|
test-no-cache:
|
2023-09-18 05:17:16 +01:00
|
|
|
uses: ./.github/workflows/env.yml
|
2023-09-18 05:09:47 +01:00
|
|
|
with:
|
|
|
|
cache: "false"
|