Merge branch '1.22.4' into ccl-v8.0 #15
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 | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test | |
strategy: | |
matrix: | |
go-version: [1.18.x] | |
pg-version: ["12", "13"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v1 | |
- name: Install PostgreSQL | |
uses: harmon758/postgresql-action@v1 | |
with: | |
postgresql version: ${{ matrix.pg-version }} | |
postgresql db: gocommon_test | |
postgresql user: nyaruka | |
postgresql password: nyaruka | |
- name: Install Linux packages | |
run: sudo apt install -y --no-install-recommends pandoc | |
- name: Install Redis | |
uses: zhulik/[email protected] | |
with: | |
redis version: "5" | |
- name: Install Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Run tests | |
run: go test -p=1 -coverprofile=coverage.text -covermode=atomic ./... | |
- name: Upload coverage | |
if: success() | |
uses: codecov/codecov-action@v1 | |
with: | |
fail_ci_if_error: true |