Skip to content

fix: correct encode null values #38

fix: correct encode null values

fix: correct encode null values #38

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: OTP-${{matrix.otp}}, OS-${{matrix.os}}
runs-on: ${{matrix.os}}
services:
cassandra:
image: cassandra
ports:
- 9042:9042
options: --health-cmd "cqlsh --debug" --health-interval 5s --health-retries 10
strategy:
fail-fast: false
matrix:
os:
- "ubuntu-22.04"
otp:
- "25.3"
- "24.3"
rebar3:
- "3.20.0"
include:
- os: "ubuntu-20.04"
otp: "23.3"
rebar3: "3.17.0"
- os: "ubuntu-20.04"
otp: "22.3"
rebar3: "3.17.0"
steps:
- uses: actions/checkout@v3
- name: Setup Cassandra Tables
run: "docker exec ${{ job.services.cassandra.id }} cqlsh -u cassandra -p cassandra --debug localhost 9042 --execute=\"CREATE KEYSPACE IF NOT EXISTS test WITH REPLICATION = {'class': 'SimpleStrategy', 'replication_factor': '1'};CREATE TABLE test.tab (first_id bigint, second_id text, col_text text, col_map map<text, text>, PRIMARY KEY (first_id, second_id));DESC keyspaces;\""
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
rebar3-version: ${{ matrix.rebar3 }}
- name: Common test, eunit, coverage
run: make tests