summaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
blob: b96901f1dc4d85e2978a9e777e5af3b0fc1ce2b5 (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
28
29
name: Test

on: [ push, pull_request ]

jobs:
  test-go:
    name: Test Go
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-go@v2
        with:
          go-version: ^1.15
      - run: make test-go

  test-wrappers:
    name: Test wrappers
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-go@v2
        with:
          go-version: ^1.15
      - uses: actions/setup-dotnet@v1
        with:
          dotnet-version: 5.0.x
      - run: make test-wrappers