diff options
author | Louis Pilfold <louis@lpil.uk> | 2024-01-18 19:02:51 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-01-18 19:02:51 +0000 |
commit | 964da497565451140120573aa98d1946dcf13594 (patch) | |
tree | b7186acf767cdce1ba6dd9cc0444845602f673da /.github/workflows | |
parent | 39eb82032297e39a1d905fecc5c12c642ebdaa0a (diff) | |
download | tour-964da497565451140120573aa98d1946dcf13594.tar.gz tour-964da497565451140120573aa98d1946dcf13594.zip |
setup-beam seems to have lost the ability to install only Gleam
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aa9a2e7..5a56ef4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,9 +14,11 @@ jobs: - uses: actions/checkout@v3 - uses: erlef/setup-beam@v1 with: + otp-version: "26.0.2" gleam-version: "0.34.1" + rebar3-version: "3" + - run: ./bin/download-compiler - run: gleam deps download - run: gleam format --check src test - run: gleam test - - run: ./bin/download-compiler - run: gleam run |