There was an error while loading. Please reload this page.
1 parent 5a6987e commit 42c7446Copy full SHA for 42c7446
1 file changed
.github/workflows/go.yml
@@ -5,7 +5,6 @@ permissions:
5
6
jobs:
7
lint:
8
- name: lint
9
runs-on: ubuntu-latest
10
steps:
11
- uses: actions/checkout@v7
@@ -15,3 +14,15 @@ jobs:
15
14
- uses: golangci/golangci-lint-action@v9
16
with:
17
working-directory: src/config-server/
+ test:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: actions/checkout@v7
21
+ - uses: actions/setup-go@v6
22
+ with:
23
+ go-version-file: src/config-server/go.mod
24
+ - name: test
25
+ run: |
26
+ export SKIP_LINT=true
27
+ src/config-server/bin/test-unit
28
+ src/config-server/bin/test-integration memory
0 commit comments