Skip to content

Commit 1ce6a1b

Browse files
author
Henrik Johansson
committed
github: actions workflow fix
1 parent 3bd3d2f commit 1ce6a1b

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

.github/workflows/go.yml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,20 @@ on:
99
jobs:
1010
build:
1111
name: Build
12-
env:
1312
runs-on: ubuntu-latest
1413
steps:
15-
- steps:
16-
- uses: actions/checkout@v2
17-
- name: Setup Go
18-
uses: actions/setup-go@v2
19-
with:
20-
go-version: latest
14+
- name:
15+
uses: actions/checkout@v2
2116

22-
- name: Unit Tests
23-
run: go test -v -race ./...
17+
- name: Setup Go
18+
uses: actions/setup-go@v2
19+
with:
20+
go-version: latest
2421

25-
- name: Build
26-
run: go build .
22+
- name: Unit Tests
23+
run: |
24+
go test -v -race ./...
25+
26+
- name: Build
27+
run: |
28+
go build .

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
cmd/gemini/dist/
2+
/gemini

0 commit comments

Comments
 (0)