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 ef76900 commit a51b4e9Copy full SHA for a51b4e9
.github/workflows/test_pr.yml
@@ -29,6 +29,19 @@ jobs:
29
go-version: ${{ matrix.go-version }}
30
- name: Install dependencies
31
run: go mod download
32
+
33
+ - name: Install dependencies for mkcert
34
+ run: |
35
+ sudo apt-get update
36
+ sudo apt-get install -y libnss3-tools
37
38
+ - name: Install mkcert
39
40
+ go install filippo.io/mkcert@latest
41
+ # Add mkcert to the PATH if not already there
42
+ echo "PATH=$(go env GOPATH)/bin:$PATH" >> $GITHUB_ENV
43
+ mkcert -install
44
45
- name: Unit and Integration test
46
env:
47
CL_INFOCLACE_SSH: ${{ secrets.CL_INFOCLACE_SSH }}
0 commit comments