diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..ca11cd14 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,43 @@ +name: On Pull Request + +on: + pull_request: + branches: [ master, main ] + push: + branches: [master, main ] + +jobs: + test: + name: test + strategy: + matrix: + go-version: + - 1.18.x + - 1.19.x + - 1.20.x + os: [ ubuntu-latest ] + runs-on: ${{ matrix.os }} + steps: + - name: Checkout + uses: actions/checkout@master + + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: ${{ matrix.go-version }} + + - run: go env + + - name: Cache deps + uses: actions/cache@v2 + with: + path: ~/go/pkg/mod + key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} + restore-keys: | + ${{ runner.os }}-go- + + - name: Install deps + run: go mod download + + - name: Test + run: go test -v -race -p=1 -count=1