mirror of
https://github.com/gleam-lang/gleam.git
synced 2025-12-23 09:47:08 +00:00
23 lines
454 B
YAML
23 lines
454 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.18.0-dev
|
|
- run: gleam format --check src test
|
|
- run: gleam deps download
|
|
- run: gleam test
|