nextcloud-spreed-signaling/.github/workflows/test.yml
2020-07-31 13:00:09 +02:00

53 lines
986 B
YAML

name: test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
go:
strategy:
matrix:
go-version:
- "1.6"
- "1.7"
- "1.8"
- "1.9"
- "1.10"
- "1.11"
- "1.12"
- "1.13"
- "1.14"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Cache dependencies
uses: actions/cache@v2
with:
path: vendor/
key: vendor-${{ matrix.go-version }}-${{ hashFiles('**/dependencies.tsv') }}
- name: Install dependencies
run: |
make godeps
make dependencies
- name: Build applications
run: |
make client
make server
- name: Run tests
run: |
make test || make test
- name: Generate coverage report
run: |
make cover || make cover