mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-23 07:06:07 +00:00
24 lines
452 B
YAML
24 lines
452 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: gleam-lang/setup-erlang@v1.1.2
|
|
with:
|
|
otp-version: 23.2
|
|
- uses: gleam-lang/setup-gleam@v1.0.2
|
|
with:
|
|
gleam-version: 0.16.1
|
|
- run: rebar3 install_deps
|
|
- run: rebar3 eunit
|
|
- run: gleam format --check src test
|