mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-23 07:06:07 +00:00
ee0fa0b672
* Update for latest Gleam - Gleam releases now use LLVM triplets for platforms so the download URLs have been updated accordingly. - Gleam's rebar3 support has been removed. This change means that future versions of this action cannot download older versions of Gleam. I can make it backwards compatible, but I will need help from someone who can convert the shell script into PowerShell for Windows. * Support older Gleam versions * Remove rebar from Gleam
22 lines
393 B
YAML
22 lines
393 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.0.0
|
|
- uses: erlef/setup-beam@v1.9.0
|
|
with:
|
|
otp-version: "23.2"
|
|
gleam-version: "0.23.0-rc1"
|
|
- run: gleam format --check src test
|
|
- run: gleam deps download
|
|
- run: gleam test
|