Fix/add timeseries #187
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
frontend: | |
name: Frontend tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Setup BEAM | |
uses: erlef/setup-beam@v1 | |
with: | |
otp-version: '26.0.2' | |
gleam-version: '1.4.1' | |
rebar3-version: '3' | |
# elixir-version: "1.15.4" | |
- name: Download gleam dependencies | |
run: gleam deps download | |
working-directory: apps/frontend | |
- name: Run gleam test | |
run: gleam test | |
working-directory: apps/frontend | |
- name: Check gleam format | |
run: gleam format --check src test | |
working-directory: apps/frontend | |
backend: | |
name: Backend tests | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_PASSWORD: gloogle | |
POSTGRES_USER: gloogle | |
options: >- | |
--health-cmd pg_isready --health-interval 10s --health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Setup BEAM | |
uses: erlef/setup-beam@v1 | |
with: | |
otp-version: '26.0.2' | |
gleam-version: '1.4.1' | |
rebar3-version: '3' | |
- name: Download gleam dependencies | |
run: gleam deps download | |
working-directory: apps/backend | |
- name: Populate DB | |
run: psql < db/seeds.sql | |
working-directory: apps/backend | |
env: | |
PGPASSWORD: gloogle | |
PGHOST: localhost | |
PGUSER: gloogle | |
PGPORT: 5432 | |
- name: Run gleam test | |
run: gleam test | |
working-directory: apps/backend | |
env: | |
POSTGRES_HOST: localhost | |
- name: Check gleam format | |
run: gleam format --check src test | |
working-directory: apps/backend |