We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 165dc9e commit 9ebb17fCopy full SHA for 9ebb17f
.github/workflows/pr.yml
@@ -14,6 +14,11 @@ jobs:
14
uses: actions/setup-go@v2
15
with:
16
go-version: ^1.12
17
+ -
18
+ name: Set up Python 3.8
19
+ uses: actions/setup-python@v2
20
+ with:
21
+ python-version: 3.8
22
-
23
name: Check out code into the Go module directory
24
uses: actions/checkout@v2
@@ -43,6 +48,7 @@ jobs:
43
48
name: Check format
44
49
run: |
45
50
go get -u github.com/google/addlicense
51
+ go get -u golang.org/x/tools/cmd/goimports
46
52
git reset HEAD --hard
47
53
54
make fmt
@@ -54,7 +60,9 @@ jobs:
60
fi
55
61
56
62
name: Run Go Tests
57
- run: make test
63
+ run: |
64
+ python -m pip install --upgrade pip yq
65
+ make test
58
66
59
67
docker:
68
name: Check docker build
0 commit comments