Update result.gleam to clarify try and add examples of use #1875
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- "main" | |
- "v*.*.*" | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: erlef/[email protected] | |
with: | |
otp-version: "26.0.2" | |
gleam-version: "0.30.2" | |
- uses: actions/[email protected] | |
with: | |
node-version: "16.18.1" | |
- run: gleam test --target erlang | |
- run: gleam test --target javascript | |
- run: gleam format --check src test |