commit dc192875b8d88849ce4fc701d17284cdea87b280
Author: Wim <wim@42.be>
Date: Wed Jun 24 22:36:39 2020 +0000
diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml
new file mode 100644
index 0000000..db67677
--- /dev/null
+++ b/.github/workflows/development.yml
@@ -00 +128 @@
+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