Skip to content

Move solr to quay #7992

Move solr to quay

Move solr to quay #7992

Workflow file for this run

name: windows-test
on:
push:
branches:
- main
pull_request:
paths:
- '.github/workflows/windows-test.yml'
- 'cmd/**'
- 'internal/**'
- 'pkg/**'
- 'tests/**'
- 'Makefile'
- 'go.mod'
- 'go.sum'
- '!**.md'
- '!internal/buildscripts/**'
concurrency:
group: windows-test-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
windows-test:
name: windows-test
runs-on: ${{ matrix.OS }}
strategy:
matrix:
OS: [ "windows-2022" ]
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.5
cache-dependency-path: '**/go.sum'
- name: Unit tests with coverage
run: |
$ErrorActionPreference = 'Stop'
$env:GOPATH = "${env:USERPROFILE}\go"
$env:PATH = "$env:PATH;${env:GOPATH}\bin"
go env -w CGO_ENABLED=0
go test -v -cover ./...