owncast/.github/workflows/test.yaml

43 lines
785 B
YAML
Raw Normal View History

name: Tests
2021-08-28 01:24:21 +03:00
on: [push, pull_request]
jobs:
test:
2021-08-28 01:24:21 +03:00
strategy:
matrix:
go-version: [1.16.x, 1.17.x]
os: [ubuntu-latest, macos-latest, windows-latest]
2021-08-28 01:24:21 +03:00
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install go
uses: actions/setup-go@v3
with:
go-version: "^1"
- name: Run tests
run: go test ./...
test-bsds:
runs-on: macos-10.15
strategy:
matrix:
os:
- name: freebsd
version: 12.2
- name: openbsd
version: 6.8
steps:
- uses: actions/checkout@v2
- name: Install go
uses: actions/setup-go@v3
with:
go-version: "^1"
- name: Run tests
run: go test ./...