forked from scylladb/scylla-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 864 Bytes
/
go.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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:
scylla-version: [ 5.0.0, 5.0.13, 5.1.0, 5.1.13, 5.2.0, 5.2.4 ]
ip-family: [ IPV4, IPV6 ]
uses: ./.github/workflows/integration-tests.yaml
with:
scylla-version: ${{ matrix.scylla-version }}
ip-family: ${{ matrix.ip-family }}