Skip to content

Commit 9046be4

Browse files
fix(ci): add certs for mailpit
Signed-off-by: Dusan Malusev <dusan@dusanmalusev.dev>
1 parent 30046dd commit 9046be4

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,7 @@ jobs:
2525
go-version: '1.25'
2626
check-latest: true
2727
- name: API Coverage
28-
run: ./scripts/e2e.sh
28+
run: |
29+
make mkcert-generate
30+
make mkcert-uninstall-ca
31+
./scripts/e2e.sh

.github/workflows/go.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ jobs:
2929
with:
3030
repo: gotestfmt
3131
- name: Unit Tests
32-
run: make test
32+
run: |
33+
make mkcert-generate
34+
make mkcert-uninstall-ca
35+
make test
3336
- name: Linting
3437
uses: golangci/golangci-lint-action@v8
3538
- name: Run Gosec

0 commit comments

Comments
 (0)