We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bd3d2f commit 1ce6a1bCopy full SHA for 1ce6a1b
.github/workflows/go.yml
@@ -9,18 +9,20 @@ on:
9
jobs:
10
build:
11
name: Build
12
- env:
13
runs-on: ubuntu-latest
14
steps:
15
- - steps:
16
- - uses: actions/checkout@v2
17
- - name: Setup Go
18
- uses: actions/setup-go@v2
19
- with:
20
- go-version: latest
+ - name:
+ uses: actions/checkout@v2
21
22
- - name: Unit Tests
23
- run: go test -v -race ./...
+ - name: Setup Go
+ uses: actions/setup-go@v2
+ with:
+ go-version: latest
24
25
- - name: Build
26
- run: go build .
+ - name: Unit Tests
+ run: |
+ go test -v -race ./...
+
+ - name: Build
27
28
+ go build .
.gitignore
@@ -1 +1,2 @@
1
cmd/gemini/dist/
2
+/gemini
0 commit comments