mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
22 lines
331 B
YAML
22 lines
331 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"
|
|
|
|
- name: Run tests
|
|
run: go test ./...
|