5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-12 21:50:26 +00:00
matterbridge/.github/workflows/development.yml

30 lines
749 B
YAML
Raw Normal View History

2020-06-24 20:36:39 +00:00
name: Development
on: [push, pull_request]
jobs:
lint:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2020-06-24 21:37:02 +00:00
with:
fetch-depth: 20
2020-06-24 20:36:39 +00:00
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v1
with:
version: v1.27
2020-06-24 21:28:41 +00:00
args: "-v --new-from-rev HEAD~1"
2020-06-24 20:36:39 +00:00
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test ./...