Skip to content

Commit

Permalink
ci: add gleam test
Browse files Browse the repository at this point in the history
  • Loading branch information
joaofnds committed Mar 17, 2024
1 parent cf64631 commit 45264f1
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/gleam.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test Gleam

on:
push:
paths:
- "gleam/**/*.gleam"

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: 26
gleam-version: 1.0.0
- name: tests
run: find gleam -name gleam.toml -maxdepth 2 -execdir gleam test \;

0 comments on commit 45264f1

Please sign in to comment.