2021-09-29 16:04:26 +02:00
|
|
|
# netxlite runs unit and integration tests on our fundamental net library
|
|
|
|
name: netxlite
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "master"
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: "${{ matrix.os }}"
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-04-22 15:47:07 +02:00
|
|
|
go: [ "1.17.9" ]
|
2021-09-29 16:04:26 +02:00
|
|
|
os: [ "ubuntu-20.04", "windows-2019", "macos-10.15" ]
|
|
|
|
steps:
|
|
|
|
- uses: actions/setup-go@v1
|
|
|
|
with:
|
|
|
|
go-version: "${{ matrix.go }}"
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: go test -race ./internal/netxlite/...
|