DB cluster configuration to define if CQL session should enable TLS or not #1672
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: Sanity check | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [ opened, synchronize, reopened ] | |
jobs: | |
checks: | |
name: Various checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Setup testing dependencies | |
uses: ./.github/actions/test-setup | |
with: | |
start-dev-env: false | |
- name: Run checks | |
run: make check | |
- name: Run unit tests | |
run: make unit-test | |
integration-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
# Due to Scylla issue #16349 it is expected that restore-schema | |
# jobs with the following config will fail (4 jobs total): | |
# - scylla-version: scylla:5.2.X, raft-enabled: true | |
# - scylla-version: scylla-enterprise:2024.1.X, raft-enabled: true | |
scylla-version: [ 'scylla:5.2.13', 'scylla:5.4.1', 'scylla-enterprise:2023.1.3', 'scylla-enterprise:2024.1.0-rc3' ] | |
ip-family: [ IPV4, IPV6 ] | |
raft-enabled: [ true, false ] | |
uses: ./.github/workflows/integration-tests.yaml | |
with: | |
scylla-version: ${{ matrix.scylla-version }} | |
ip-family: ${{ matrix.ip-family }} | |
raft-enabled: ${{ matrix.raft-enabled }} |