Skip to content

Commit 2a0fe2e

Browse files
committed
Add master branch and bump OTP in CI
Include 'master' alongside 'main' as workflow triggers, update otp-version from 27.0 to 28, and add rebar3-version set to "3". Leaves gleam-version unchanged and retains a commented elixir-version placeholder. These changes ensure CI runs on both branches and uses the newer OTP/rebar tooling.
1 parent 8296557 commit 2a0fe2e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: test
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- master
7+
- main
68
pull_request:
79

810
jobs:
@@ -12,8 +14,10 @@ jobs:
1214
- uses: actions/checkout@v4
1315
- uses: erlef/setup-beam@v1
1416
with:
15-
otp-version: "27.0"
17+
otp-version: "28"
1618
gleam-version: "1.14.0"
19+
rebar3-version: "3"
20+
# elixir-version: "1"
1721
- run: gleam deps download
1822
- run: gleam test
1923
- run: gleam format --check src test

0 commit comments

Comments
 (0)