We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e7f033 commit 59a5211Copy full SHA for 59a5211
2 files changed
.github/workflows/ci.yaml
@@ -14,6 +14,9 @@ jobs:
14
go-version: ${{ matrix.go-version }}
15
- name: Checkout code
16
uses: actions/checkout@v2
17
+
18
+ - name: Set up PATH
19
+ run: export PATH="$(ec path):$PATH"
20
- name: Run Tests
21
run: make test
22
- name: Run Integration Tests
Makefile
@@ -12,7 +12,7 @@ install:
12
13
test: install
@echo "[+] testing"
- @go test -v ./...
+ go test -v ./...
.PHONY: test
integration:
0 commit comments