mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 05:14:20 +03:00
22 lines
334 B
YAML
22 lines
334 B
YAML
|
name: Tests
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
pull_request:
|
||
|
branches: master
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: Install go
|
||
|
uses: actions/setup-go@v2
|
||
|
with:
|
||
|
go-version: '1.14.x'
|
||
|
|
||
|
- name: Run tests
|
||
|
run: go test ./...
|