also run tests on static builds
This commit is contained in:
parent
17ad908748
commit
2829f5e2e4
2 changed files with 8 additions and 3 deletions
.github/workflows
6
.github/workflows/go-tests-windows.yml
vendored
6
.github/workflows/go-tests-windows.yml
vendored
|
@ -18,7 +18,9 @@ jobs:
|
|||
build:
|
||||
name: "Build + tests"
|
||||
runs-on: windows-2022
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
build-type: ["build", "static"]
|
||||
steps:
|
||||
|
||||
- name: "Set up Go 1.19"
|
||||
|
@ -35,7 +37,7 @@ jobs:
|
|||
|
||||
- name: Build
|
||||
run: |
|
||||
make build
|
||||
make ${{ matrix.build-type }}
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
|
|
5
.github/workflows/go-tests.yml
vendored
5
.github/workflows/go-tests.yml
vendored
|
@ -33,6 +33,9 @@ jobs:
|
|||
build:
|
||||
name: "Build + tests"
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
build-type: ["build", "static"]
|
||||
services:
|
||||
localstack:
|
||||
image: localstack/localstack:0.13.3
|
||||
|
@ -122,7 +125,7 @@ jobs:
|
|||
|
||||
- name: Build
|
||||
run: |
|
||||
make build
|
||||
make ${{ matrix.build-type }}
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
|
|
Loading…
Add table
Reference in a new issue