This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
Merge Add Session.AllHosts (#47) into kiwicom-master #138
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: Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
env: | |
SCYLLA_IMAGE: scylladb/scylla:4.6.3 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
- uses: actions/cache@v2 | |
id: gomod-cache | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('go.mod') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- run: go vet ./... | |
- name: Run unit tests | |
run: go test -tags unit -race ./... | |
- name: Install Docker compose | |
env: | |
DOCKER_COMPOSE_VERSION: 2.20.0 | |
run: sudo curl -L "https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
- run: ./integration.sh cassandra scylla | |
- run: ./integration.sh integration scylla | |
- run: ./integration.sh ccm |