Skip to content

Commit 11f526b

Browse files
authored
Merge pull request #29 from grafana/zizmor_errors
had to move to workflows directory to resolve the errors
2 parents 1d4c302 + 2a55631 commit 11f526b

File tree

2 files changed

+25
-21
lines changed

2 files changed

+25
-21
lines changed

.github/workflow/ci.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI Build & Test
2+
on:
3+
push:
4+
branches: [master]
5+
pull_request:
6+
branches: [master]
7+
8+
permissions: {}
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
with:
16+
persist-credentials: false
17+
18+
- name: Set up Go
19+
uses: actions/setup-go@v2
20+
with:
21+
go-version: 1.16
22+
- name: Build
23+
run: go build -v ./...
24+
- name: fmt
25+
run: gofmt -s -l -e .

0 commit comments

Comments
 (0)