diff options
author | Wim <wim@42.be> | 2020-06-24 22:36:39 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2020-06-24 22:36:47 +0200 |
commit | bbf594c815fdf82e0a37b56c6e0b32e8572830f1 (patch) | |
tree | ea4e7d6c9b6a7e073e606de6b9f6edd4e6af67d3 /.github/workflows | |
parent | 2f0f2ee40dd5057d9e95a0abb717cbb9e4d54d35 (diff) | |
download | matterbridge-msglm-bbf594c815fdf82e0a37b56c6e0b32e8572830f1.tar.gz matterbridge-msglm-bbf594c815fdf82e0a37b56c6e0b32e8572830f1.tar.bz2 matterbridge-msglm-bbf594c815fdf82e0a37b56c6e0b32e8572830f1.zip |
Use github workflows
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/development.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml new file mode 100644 index 00000000..db676770 --- /dev/null +++ b/.github/workflows/development.yml @@ -0,0 +1,28 @@ +name: Development +on: [push, pull_request] +name: Test +jobs: + lint: + name: golangci-lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run golangci-lint + uses: golangci/golangci-lint-action@v1 + with: + version: v1.27 + 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 ./...
\ No newline at end of file |