From 63b9eb362270aecdedbe048f3357e6f603ab4d2e Mon Sep 17 00:00:00 2001 From: Andrew Sisley Date: Fri, 10 Nov 2023 12:57:04 -0500 Subject: [PATCH] Add windows test runner --- .github/workflows/test-and-upload-coverage.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/test-and-upload-coverage.yml b/.github/workflows/test-and-upload-coverage.yml index ebd565091b..277aeef92a 100644 --- a/.github/workflows/test-and-upload-coverage.yml +++ b/.github/workflows/test-and-upload-coverage.yml @@ -46,9 +46,19 @@ jobs: database-type: badger-memory mutation-type: collection-save detect-changes: false + - os: windows-latest + client-type: go + database-type: badger-memory + mutation-type: collection-save + detect-changes: false runs-on: ${{ matrix.os }} + # We run all runners via the bash shell to provide us with a consistent set of env variables and commands + defaults: + run: + shell: bash + env: DEFRA_CLIENT_GO: ${{ matrix.client-type == 'go' }} DEFRA_CLIENT_HTTP: ${{ matrix.client-type == 'http' }}