diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 2703a49..33a74f3 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -11,7 +11,7 @@ on: jobs: - build: + test-linux: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -29,3 +29,22 @@ jobs: - name: Test run: go test -v ./... + + test-windows: + runs-on: windows-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.21' + + - name: Install dependencies + run: go get -d -v ./... + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./...