Skip to content

Commit

Permalink
retry ver
Browse files Browse the repository at this point in the history
  • Loading branch information
bwireman committed Jun 8, 2024
1 parent e1a4258 commit 1733d49
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Test

on:
Expand All @@ -9,16 +6,23 @@ on:
- main
pull_request:

env:
otp: "26.0.2"
gleam: "1.2.0"
rebar: "3"



jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: "26.0.2"
gleam-version: "1.2.0"
rebar3-version: "3"
otp-version: ${{ env.otp }}
gleam-version: ${{ env.gleam }}
rebar3-version: ${{ env.rebar }}
- run: gleam deps download
- run: gleam test
- run: gleam format --check src test
Expand All @@ -32,7 +36,7 @@ jobs:
otp-version: "26.0.2"
gleam-version: "1.2.0"
rebar3-version: "3"
- run: gleam run
- run: gleam run --target erlang

node:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1733d49

Please sign in to comment.