diff options
author | Louis Pilfold <louis@lpil.uk> | 2024-01-18 18:33:14 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-01-18 18:33:14 +0000 |
commit | 840ffc24702ce73a7c237addd63f0bb1d8babb4f (patch) | |
tree | 71ab17492a25fb5eb48dd2592f055618f916994d /.github/workflows/test.yml | |
parent | 451f7f0b0bbd8e1e187fb00d91dc829cc7347e8a (diff) | |
download | tour-840ffc24702ce73a7c237addd63f0bb1d8babb4f.tar.gz tour-840ffc24702ce73a7c237addd63f0bb1d8babb4f.zip |
Build on CI
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r-- | .github/workflows/test.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 45b6d3d..3d2429f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,5 +20,12 @@ jobs: # elixir-version: "1.15.4" - run: gleam deps download - run: gleam format --check src test - # - run: gleam run - run: gleam test + + - run: | + mkdir wasm-compiler + cd wasm-compiler + curl -L "https://github.com/gleam-lang/gleam/releases/download/v0.34.1/gleam-v0.34.1-browser.tar.gz" | tar xz + cd .. + + - run: gleam run |