diff options
author | Michał Łępicki <michallepicki@users.noreply.github.com> | 2022-01-04 16:55:43 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2022-01-04 15:56:38 +0000 |
commit | a11f368e83598923014df9eda07821dc2ce143e7 (patch) | |
tree | 569f08fddfdd2fd34589422e3841a10bb8457461 /.github | |
parent | 265c228f4a8f233d863f35df9f8e888918902cdc (diff) | |
download | gleam_stdlib-a11f368e83598923014df9eda07821dc2ce143e7.tar.gz gleam_stdlib-a11f368e83598923014df9eda07821dc2ce143e7.zip |
Use erlef/setup-beam GitHub action
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 919a864..cea9c81 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,15 +12,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2.0.0 - - uses: gleam-lang/setup-erlang@v1.1.2 + - uses: erlef/setup-beam@v1.9.0 with: otp-version: "23.2" + gleam-version: "0.19.0-rc1" - uses: actions/setup-node@v2 with: node-version: "16.0.0" - - uses: gleam-lang/setup-gleam@v1.0.1 - with: - gleam-version: "0.19.0-rc1" - run: gleam test - run: npm test # - run: gleam format --check src test |