upgrade version to 1.12.0 (#872) #1727
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: CI tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
env: | |
TYK_PMP_ANALYTICSSTORAGETYPE: redis | |
TYK_PMP_ANALYTICSSTORAGECONFIG_TYPE: redis | |
TYK_PMP_ANALYTICSSTORAGECONFIG_HOST: localhost | |
TYK_PMP_ANALYTICSSTORAGECONFIG_PORT: 6379 | |
jobs: | |
golangci-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Tyk Pump | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Fetch base branch | |
if: ${{ github.event_name == 'pull_request' }} | |
run: git fetch origin ${{ github.base_ref }} | |
- name: golangci-lint | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
args: --out-format=checkstyle:golanglint.xml --timeout=300s --max-issues-per-linter=0 --max-same-issues=0 --new-from-rev=origin/${{ github.base_ref }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: golangcilint | |
retention-days: 1 | |
path: | | |
golanglint.xml | |
test: | |
name: Go ${{ matrix.go }} tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
redis-version: [5] | |
mongodb-version: [4.2] | |
postgres-version: [15] | |
go: [1.22.7] | |
steps: | |
- name: Checkout Tyk Pump | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Setup Golang | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Install Dependencies and basic hygiene test | |
id: hygiene | |
run: | | |
go install golang.org/x/tools/cmd/goimports@latest | |
- name: Fetch base branch | |
if: ${{ github.event_name == 'pull_request' }} | |
run: git fetch origin ${{ github.base_ref }} | |
- name: Start Redis | |
uses: supercharge/[email protected] | |
with: | |
redis-version: ${{ matrix.redis-version }} | |
- name: Start MongoDB | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: "${{ matrix.mongodb-version }}" | |
- name: Start PostgreSQL | |
uses: harmon758/postgresql-action@v1 | |
with: | |
postgresql version: "${{ matrix.postgres-version }}" | |
postgresql db: "tyk_analytics" | |
postgresql user: "tyk" | |
postgresql password: "tyk123" | |
- name: Cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Run Pump Tests | |
id: ci-tests | |
env: | |
TYK_TEST_POSTGRES: "host=localhost user=tyk password=tyk123 dbname=tyk_analytics port=5432 sslmode=disable" | |
run: | | |
./bin/ci-test.sh 2>&1 | tee test.log | |
result_code=${PIPESTATUS[0]} | |
echo "log=$(sed -ze 's/%/%25/g;s/\n/%0A/g' test.log)" >> $GITHUB_OUTPUT | |
exit $result_code |