glance 1.0.0 ensured #51
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: | |
- master | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: "27.0.0" | |
gleam-version: "1.5.0" | |
rebar3-version: "3" | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- run: gleam deps download | |
- run: gleam test --target erlang | |
- run: git diff --exit-code ./test/glerd_gen.gleam | |
- run: gleam test --target javascript --runtime node | |
- run: git diff --exit-code ./test/glerd_gen.gleam | |
- run: gleam test --target javascript --runtime deno | |
- run: git diff --exit-code ./test/glerd_gen.gleam | |
- run: gleam test --target javascript --runtime bun | |
- run: git diff --exit-code ./test/glerd_gen.gleam | |
- run: gleam format --check src test |