Skip to content

Commit

Permalink
ci: reenables test
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 382004a commit 3e221b4
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

jobs:
test:
frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -17,7 +17,22 @@ jobs:
gleam-version: "1.0.0"
rebar3-version: "3"
# elixir-version: "1.15.4"
- run: cd frontend
- run: cd apps/frontend
- run: gleam deps download
- run: gleam test
- run: gleam format --check src test

backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: "26.0.2"
gleam-version: "1.0.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

0 comments on commit 3e221b4

Please sign in to comment.