Skip to content

Commit

Permalink
ci: fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume Hivert <[email protected]>
  • Loading branch information
ghivert committed May 15, 2024
1 parent fef2a92 commit 14e94f9
Showing 1 changed file with 28 additions and 12 deletions.
40 changes: 28 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,47 @@ on:

jobs:
frontend:
name: Frontend tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
- name: Checkout sources
uses: actions/checkout@v3
- name: Setup BEAM
uses: erlef/setup-beam@v1
with:
otp-version: "26.0.2"
gleam-version: "1.1.0"
rebar3-version: "3"
# elixir-version: "1.15.4"
- run: cd apps/frontend
- run: gleam deps download
- run: gleam test
- run: gleam format --check src test
- 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
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
- name: Checkout sources
uses: actions/checkout@v3
- name: Setup BEAM
uses: erlef/setup-beam@v1
with:
otp-version: "26.0.2"
gleam-version: "1.1.0"
rebar3-version: "3"
# elixir-version: "1.15.4"
- run: cd apps/backend
- run: gleam deps download
- run: gleam test
- run: gleam format --check src test
- name: Download gleam dependencies
run: gleam deps download
working-directory: apps/backend
- name: Run gleam test
run: gleam test
working-directory: apps/backend
- name: Check gleam format
run: gleam format --check src test
working-directory: apps/backend

0 comments on commit 14e94f9

Please sign in to comment.