aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test-signer-windows.yml
blob: 0ba02d11c941a46802b80b17c3f4d39ba95671e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Build and Test Signer Windows

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:

  build:
    runs-on: windows-latest
    steps:
    - uses: actions/checkout@v3

    - name: Set up Go
      uses: actions/setup-go@v3
      with:
        go-version: 1.18

    - name: Build
      working-directory: ./internal/signer/windows
      run: go build -v ./...

    - name: Test
      working-directory: ./internal/signer/windows
      run: go test -v ./...