mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-23 07:06:07 +00:00
22 lines
385 B
YAML
22 lines
385 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: erlef/setup-beam@v1
|
|
with:
|
|
otp-version: "23.2"
|
|
gleam-version: "0.23.0-rc1"
|
|
- run: gleam format --check src test
|
|
- run: gleam deps download
|
|
- run: gleam test
|