mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-23 07:06:07 +00:00
3025c9910d
* yamllint for newer file * Allow for proper, lower-level, pinning Makes for increased reproducibility (and overall control)
24 lines
453 B
YAML
24 lines
453 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4.2.2
|
|
- uses: erlef/setup-beam@v1
|
|
with:
|
|
otp-version: "26.0.2"
|
|
gleam-version: "1.5.0"
|
|
rebar3-version: "3"
|
|
# elixir-version: "1.15.4"
|
|
- run: gleam deps download
|
|
- run: gleam test
|
|
- run: gleam format --check src test
|