Skip to content

Commit d20df87

Browse files
committed
gha test
1 parent c4ca2db commit d20df87

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

Diff for: .github/workflows/test.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: shelmangroup-default
10+
env:
11+
ImageOS: ubuntu22
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- uses: erlef/setup-beam@v1
16+
with:
17+
otp-version: 26
18+
elixir-version: "1.14"
19+
20+
- uses: actions/setup-go@v5
21+
with:
22+
go-version: "1.21"
23+
24+
- uses: actions/setup-node@v4
25+
with:
26+
node-version: 18
27+
28+
- uses: actions/setup-java@v4
29+
with:
30+
distribution: "temurin"
31+
java-version: "21"
32+
33+
- uses: actions/setup-python@v5
34+
with:
35+
python-version: "3.10"
36+
37+
- run: go version
38+
- run: npm version
39+
- run: java -version
40+
- run: python --version

0 commit comments

Comments
 (0)