-
Notifications
You must be signed in to change notification settings - Fork 6
36 lines (34 loc) · 900 Bytes
/
main.yml
File metadata and controls
36 lines (34 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: build-x64
on:
push:
branches: [ develop, master ]
pull_request:
branches: [ develop, master ]
jobs:
build:
strategy:
matrix:
tuple:
- otp: '22.2'
elixir: '1.10.2'
nim: '1.2.0'
- otp: '23.0'
elixir: '1.10.4'
nim: '1.2.6'
- otp: '23.1.2'
elixir: '1.11.2'
nim: '1.2.8'
name: OTP ${{matrix.tuple.otp}} - Elixir ${{matrix.tuple.elixir}} - Nim ${{matrix.tuple.nim}}
runs-on: ubuntu-18.04
steps:
- run: uname -a
- uses: actions/checkout@v2
- uses: actions/setup-elixir@v1.3.0
with:
otp-version: ${{matrix.tuple.otp}}
elixir-version: ${{matrix.tuple.elixir}}
- uses: jiro4989/setup-nim-action@v1.0.5
with:
nim-version: ${{matrix.tuple.nim}}
- run: nimble build_all
- run: nimble test_all