summaryrefslogtreecommitdiff
path: root/.github/workflows/test-win.yml
blob: a8c2dba8500b48a73aaec6913deb44bb5ef1573b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: "[Windows] Check build"

on: [ push, pull_request ]

jobs:
  build-lib:
    name: "[Windows] Build shared Go library"
    runs-on: windows-latest

    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-go@v3
        with:
          go-version: ^1.15
      - run: make
      - uses: actions/upload-artifact@v3
        with:
          name: shared-lib
          path: exports/lib/
          retention-days: 1