File tree Expand file tree Collapse file tree 1 file changed +48
-48
lines changed Expand file tree Collapse file tree 1 file changed +48
-48
lines changed Original file line number Diff line number Diff line change 1- name : Create CI cache
2-
3- on :
4- workflow_dispatch :
5- push :
6- branches :
7- - main
8- schedule :
9- # Run every day at 10:00 UTC / 03:00 PST
10- - cron : ' 0 10 * * *'
11-
12- permissions :
13- contents : read
14-
15- # Ensure scripts are run with pipefail. See:
16- # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#exit-codes-and-error-action-preference
17- defaults :
18- run :
19- shell : bash
20-
21- jobs :
22- cache :
23- strategy :
24- fail-fast : false
25- matrix :
26- os :
27- - ubuntu-latest
28- - windows-latest
29- - macos-latest
30- go-version :
31- - ' >=1.25.0'
32-
33- runs-on : ${{ matrix.os }}
34-
35- steps :
36- - run : git config --system core.longpaths true
37- if : ${{ matrix.os == 'windows-latest' }}
38-
39- - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
40- with :
41- submodules : true
42- - uses : actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
43- - uses : dtolnay/rust-toolchain@fcf085fcb4b4b8f63f96906cd713eb52181b5ea4 # stable
44-
45- - uses : ./.github/actions/setup-go
46- with :
47- go-version : ${{ matrix.go-version }}
48- create : ' true'
1+ # name: Create CI cache
2+
3+ # on:
4+ # workflow_dispatch:
5+ # push:
6+ # branches:
7+ # - main
8+ # schedule:
9+ # # Run every day at 10:00 UTC / 03:00 PST
10+ # - cron: '0 10 * * *'
11+
12+ # permissions:
13+ # contents: read
14+
15+ # # Ensure scripts are run with pipefail. See:
16+ # # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#exit-codes-and-error-action-preference
17+ # defaults:
18+ # run:
19+ # shell: bash
20+
21+ # jobs:
22+ # cache:
23+ # strategy:
24+ # fail-fast: false
25+ # matrix:
26+ # os:
27+ # - ubuntu-latest
28+ # - windows-latest
29+ # - macos-latest
30+ # go-version:
31+ # - '>=1.25.0'
32+
33+ # runs-on: ${{ matrix.os }}
34+
35+ # steps:
36+ # - run: git config --system core.longpaths true
37+ # if: ${{ matrix.os == 'windows-latest' }}
38+
39+ # - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
40+ # with:
41+ # submodules: true
42+ # - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
43+ # - uses: dtolnay/rust-toolchain@fcf085fcb4b4b8f63f96906cd713eb52181b5ea4 # stable
44+
45+ # - uses: ./.github/actions/setup-go
46+ # with:
47+ # go-version: ${{ matrix.go-version }}
48+ # create: 'true'
You can’t perform that action at this time.
0 commit comments