Merging to release-4-lts: [TT-7127] Fix goplugin invalid memory address or nil pointer dereference (#5589) #123
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Basic build checks | |
on: pull_request | |
jobs: | |
test: | |
name: Go ${{ matrix.go }} Redis ${{ matrix.redis-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
go: [1.15] | |
redis-version: [6] | |
steps: | |
- name: Checkout Tyk | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Setup Golang | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Start Redis | |
uses: supercharge/[email protected] | |
with: | |
redis-version: ${{ matrix.redis-version }} | |
- name: Cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Build | |
run: go build . | |
- name: Build tests, runs init funcs | |
run: go test -run=^$ ./... |