also run tests on static builds

This commit is contained in:
Sebastien Blot 2022-09-05 10:02:46 +02:00
parent 17ad908748
commit 2829f5e2e4
No known key found for this signature in database
GPG key ID: DFC2902F40449F6A
2 changed files with 8 additions and 3 deletions

View file

@ -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: |

View file

@ -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: |