Skip to content

Investigate

Investigate #530

Workflow file for this run

name: CI tests
on:
- push
- pull_request
jobs:
build-and-test:
strategy:
fail-fast: false
matrix:
go:
- '1.13'
- stable
os:
- ubuntu-20.04
- ubuntu-22.04
- ubuntu-24.04
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Setup dependencies
run: |
sudo add-apt-repository ppa:dqlite/dev -y
sudo apt update
sudo apt install -y libsqlite3-dev libuv1-dev liblz4-dev libdqlite-dev
- name: Download deps
run: |
go get -t -tags libsqlite3 ./...
- name: Test
env:
LIBDQLITE_TRACE: 1
GO_DQLITE_MULTITHREAD: 1
run: |
go test -v -tags libsqlite3 -race -coverprofile=coverage.out github.com/canonical/go-dqlite/client -run TestMembership
- name: Coverage
uses: coverallsapp/github-action@v2
with:
file: coverage.out
parallel: true
finish:
needs: build-and-test
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Finish coverage
uses: coverallsapp/github-action@v2
with:
parallel-finished: true