diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..b0dd277 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +name: Test +on: + push: +jobs: + release: + name: Run Tests + runs-on: ubuntu-latest + steps: + - name: Set up Go + uses: actions/setup-go@v1 + with: + go-version: 1.14.x + - name: Checkout + uses: actions/checkout@v2 + - name: Install Dependencies + run: go mod download + - name: Execute Tests + run: go test ./...