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 b80b8f6 commit c14f123Copy full SHA for c14f123
.github/workflows/build.yml
@@ -6,8 +6,8 @@ on:
6
pull_request:
7
8
jobs:
9
- build:
10
- name: Build
+ deps:
+ name: Dependencies
11
runs-on: ubuntu-latest
12
steps:
13
- name: Set up Go
@@ -20,8 +20,21 @@ jobs:
20
21
- name: Dependencies
22
run: go get ./...
23
- working-directory: ../
+ working-directory: ./
24
+
25
+ build:
26
+ needs: deps
27
+ name: Build
28
+ runs-on: ubuntu-latest
29
+ steps:
30
+ - name: Set up Go
31
+ uses: actions/setup-go@v2
32
+ with:
33
+ go-version: 1.14
34
35
+ - name: Check out code
36
+ uses: actions/checkout@v2
37
38
39
run: go build .
- working-directory: ./
40
0 commit comments