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 4006750 commit 1b9e9f6Copy full SHA for 1b9e9f6
.circleci/config.yml
@@ -1,5 +1,8 @@
1
version: 2.1
2
3
+orbs:
4
+ go: circleci/[email protected]
5
+
6
workflows:
7
main:
8
jobs:
@@ -11,12 +14,14 @@ jobs:
11
14
- image: cimg/go:1.17.7
12
15
steps:
13
16
- checkout
17
+ - go/load-cache
18
+ - go/mod-download
19
- run:
20
name: "Download Dependancies"
21
command: |
- go mod download
22
sudo apt-get update && sudo apt-get install -y libappindicator3-dev libgtk-3-dev
23
24
name: "Run Tests"
25
26
./build.sh -v ./...
27
+ - go/save-cache
0 commit comments