Skip to content

refactor query builder api *breaking change* (#60) #20

refactor query builder api *breaking change* (#60)

refactor query builder api *breaking change* (#60) #20

Workflow file for this run

name: Coveralls
on: push
jobs:
coveralls:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
deps
_build
key: ${{ runner.os }}-mix-coveralls-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-mix-coveralls-
- uses: erlef/setup-beam@v1
with:
otp-version: 25.1.2
elixir-version: 1.14.2
- run: mix deps.get
- run: CI=true MIX_ENV=test mix coveralls.json
- name: Upload to codecov.io
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}