mirror of
https://github.com/NotAShelf/go-grep-cache.git
synced 2024-11-01 07:41:14 +00:00
CI: trigger less often
This commit is contained in:
parent
2a497f101b
commit
dd83643324
1 changed files with 21 additions and 14 deletions
35
.github/workflows/go.yml
vendored
35
.github/workflows/go.yml
vendored
|
@ -1,27 +1,34 @@
|
||||||
name: Go
|
name: Go
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches: [ "main" ]
|
branches: ["main"]
|
||||||
|
paths:
|
||||||
|
- main.go
|
||||||
|
- .github/workflows/go.yml
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "main" ]
|
branches: ["main"]
|
||||||
|
paths:
|
||||||
|
- main.go
|
||||||
|
- .github/workflows/go.yml
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v4
|
uses: actions/setup-go@v4
|
||||||
with:
|
with:
|
||||||
go-version: '1.20'
|
go-version: "1.20"
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: go build -v ./.
|
run: go build -v ./.
|
||||||
|
|
||||||
- name: Cache
|
|
||||||
uses: actions/cache@v3.3.2
|
|
||||||
|
|
||||||
|
|
||||||
|
- name: Cache
|
||||||
|
uses: actions/cache@v3.3.2
|
||||||
|
with:
|
||||||
|
path: go-grep-cache
|
||||||
|
key: ${{ runner.os }}-go-grep-cache
|
||||||
|
|
Loading…
Reference in a new issue