ec98500ba7
We're starting to prepare a new release. The first step is to use go1.17.6 in the following places: 1. everywhere we define the version of Go in this tree; 2. when we're building for Android (using ooni/go); 3. in our ooni/oohttp fork of Go net/http standard library. Reference issue: https://github.com/ooni/probe/issues/1845
21 lines
494 B
YAML
21 lines
494 B
YAML
# 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:
|
|
go: [ "1.17.6" ]
|
|
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/...
|