Skip to content

Commit 77e331f

Browse files
authored
add missing JOINs tests (#18)
1 parent dd59217 commit 77e331f

4 files changed

Lines changed: 669 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,4 +150,4 @@ jobs:
150150

151151
- name: Post test coverage to Coveralls
152152
run: mix coveralls.github
153-
if: ${{ matrix.lint }}
153+
if: ${{ matrix.lint && github.event_name == 'push' && github.ref == 'refs/heads/main' }}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Restful client for Typesense with adherence to Open API spec 3 (formerly Swagger
99
[![Typesense badge](https://img.shields.io/badge/Typesense-v26.0_%7C_v27.0_%7C_v27.1-darkblue)](https://typesense.org/docs/27.1/api)
1010
[![Coverage Status](https://coveralls.io/repos/github/jaeyson/open_api_typesense/badge.svg?branch=main)](https://coveralls.io/github/jaeyson/open_api_typesense?branch=main)
1111
[![CI Status](https://github.com/jaeyson/open_api_typesense/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/jaeyson/open_api_typesense/actions/workflows/ci.yml)
12+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/965dd3f8866d49c3b3e82edd0f6270cb)](https://app.codacy.com/gh/jaeyson/open_api_typesense/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
13+
[![CodeScene Average Code Health](https://codescene.io/projects/63240/status-badges/average-code-health)](https://codescene.io/projects/63240)
1214

1315
## Installation
1416

lib/open_api_typesense/client.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ defmodule OpenApiTypesense.Client do
1010
@doc """
1111
A callback function for custom HTTP client
1212
"""
13+
@doc since: "0.2.0"
1314
@callback request(conn :: map(), params :: keyword()) :: response()
1415

1516
@typedoc since: "0.2.0"

0 commit comments

Comments
 (0)