Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,29 @@ on:

jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: "28"
gleam-version: "1.10.0"
gleam-version: "1.13.0"
rebar3-version: "3"
- uses: actions/setup-node@v4
with:
node-version: 20
- run: gleam test --target erlang
- run: gleam test --target javascript

check-format:
name: Check Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: "28"
gleam-version: "1.13.0"
rebar3-version: "3"
# elixir-version: "1.15.4"
- run: gleam test
- run: gleam format --check src test
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleased

- Added parsing of TOML documents to `Dynamic`.

## v2.0.0 - 2025-05-31

- Added [gleam_time](https://hexdocs.pm/gleam_time/index.html) as a dependency.
Expand Down
2 changes: 1 addition & 1 deletion gleam.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repository = { type = "github", user = "lpil", repo = "tom" }
links = [{ title = "TOML website", href = "https://toml.io/en/" }]

[dependencies]
gleam_stdlib = ">= 0.33.0 and < 3.0.0"
gleam_stdlib = ">= 0.53.0 and < 3.0.0"
gleam_time = ">= 1.2.0 and < 2.0.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ packages = [
]

[requirements]
gleam_stdlib = { version = ">= 0.33.0 and < 3.0.0" }
gleam_stdlib = { version = ">= 0.53.0 and < 3.0.0" }
gleam_time = { version = ">= 1.2.0 and < 2.0.0" }
gleeunit = { version = "~> 1.0" }
Loading