2024-11-30 14:48:01 +00:00
|
|
|
name: test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2024-11-30 15:30:55 +00:00
|
|
|
- run: https://github.com/asdf-vm/actions/install@v3
|
2024-11-30 14:48:01 +00:00
|
|
|
- run: gleam deps download
|
|
|
|
- run: gleam test
|
|
|
|
- run: gleam format --check src test
|