mirror of
https://github.com/julia-actions/cache.git
synced 2026-02-12 09:26:53 +08:00
Experiment with theoretical cache key conflict
This commit is contained in:
19
.github/workflows/ReusableTest.yml
vendored
Normal file
19
.github/workflows/ReusableTest.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
name: Re-usable Test
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
inputs: {}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
trigger:
|
||||||
|
uses: ./.github/workflows/ReusableWorkflow.yml
|
||||||
|
|
||||||
|
duplicate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||||
|
- uses: julia-actions/setup-julia@v2
|
||||||
|
with:
|
||||||
|
version: "1"
|
||||||
|
- name: Save cache
|
||||||
|
uses: ./
|
||||||
16
.github/workflows/ReusableWorkflow.yml
vendored
Normal file
16
.github/workflows/ReusableWorkflow.yml
vendored
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
name: Re-usable Workflow
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
inputs: {}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
duplicate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||||
|
- uses: julia-actions/setup-julia@v2
|
||||||
|
with:
|
||||||
|
version: "1"
|
||||||
|
- name: Save cache
|
||||||
|
uses: ./
|
||||||
Reference in New Issue
Block a user