Skip to content

Commit

Permalink
Add github test action
Browse files Browse the repository at this point in the history
  • Loading branch information
adz committed Feb 9, 2024
1 parent b66faf4 commit 5b8ea9b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,23 @@
name: test

on:
push:
branches:
- master
- main
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: "26.2.2"
gleam-version: "0.34.0"
rebar3-version: "3"
# elixir-version: "1.15.4"
- run: gleam deps download
- run: gleam test
- run: gleam format --check src test
2 changes: 1 addition & 1 deletion .tool-versions
@@ -1,2 +1,2 @@
erlang 26.2.1
erlang 26.2.2
gleam 0.34.0

0 comments on commit 5b8ea9b

Please sign in to comment.