From dd8364332434a89f5c061d502ff118cf9b2e7fef Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Thu, 26 Oct 2023 16:23:12 +0300 Subject: [PATCH] CI: trigger less often --- .github/workflows/go.yml | 35 +++++++++++++++++++++-------------- 1 file changed, 21 insertions(+), 14 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 197fc00..ca1060d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,27 +1,34 @@ name: Go on: + workflow_dispatch: push: - branches: [ "main" ] + branches: ["main"] + paths: + - main.go + - .github/workflows/go.yml pull_request: - branches: [ "main" ] + branches: ["main"] + paths: + - main.go + - .github/workflows/go.yml jobs: - build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4 - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.20' + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: "1.20" - - name: Build - run: go build -v ./. - - - name: Cache - uses: actions/cache@v3.3.2 - + - name: Build + run: go build -v ./. + - name: Cache + uses: actions/cache@v3.3.2 + with: + path: go-grep-cache + key: ${{ runner.os }}-go-grep-cache