Skip to content

Commit 0ca3639

Browse files
committed
Test more on CI
1 parent bfc0741 commit 0ca3639

1 file changed

Lines changed: 17 additions & 4 deletions

File tree

.github/workflows/test.yml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,28 @@ on:
77
pull_request:
88

99
jobs:
10-
test:
10+
test-windows:
11+
runs-on: windows-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: erlef/setup-beam@v1
15+
with:
16+
otp-version: "27"
17+
gleam-version: "1.9.0"
18+
rebar3-version: "3"
19+
- run: gleam test --target erlang
20+
- run: gleam test --target javascript
21+
- run: gleam format --check src test
22+
23+
test-linux:
1124
runs-on: ubuntu-latest
1225
steps:
1326
- uses: actions/checkout@v3
1427
- uses: erlef/setup-beam@v1
1528
with:
16-
otp-version: "27.0"
29+
otp-version: "27"
1730
gleam-version: "1.9.0"
1831
rebar3-version: "3"
19-
# elixir-version: "1.15.4"
20-
- run: gleam test
32+
- run: gleam test --target erlang
33+
- run: gleam test --target javascript
2134
- run: gleam format --check src test

0 commit comments

Comments
 (0)