Skip to content

refactor: rename from store to adapter #27

refactor: rename from store to adapter

refactor: rename from store to adapter #27

Workflow file for this run

name: test
on:
push:
branches:
- develop
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres # Docker Hub image
env:
POSTGRES_PASSWORD: "mySuperSecretPassword!"
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: "26.0.2"
gleam-version: "1.4.1"
rebar3-version: "3"
- run: gleam deps download
- run: gleam test
- run: gleam format --check src test