aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/go.yml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.github/workflows/go.yml14
1 files changed, 8 insertions, 6 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index 875286d..68feb69 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -3,12 +3,14 @@ name: Go
on:
push:
paths:
- - '**.go'
- - '**go.mod'
+ - "**.go"
+ - "**go.mod"
+ - ".github/workflows/go.yml"
pull_request:
paths:
- - '**.go'
- - '**go.mod'
+ - "**.go"
+ - "**go.mod"
+ - ".github/workflows/go.yml"
jobs:
build:
@@ -22,8 +24,8 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
- go-version: 'stable'
+ go-version: "stable"
- name: Build
run: go build -v .
- name: Test
- run: go test -v . \ No newline at end of file
+ run: go test -v .