blob: a9b5a2572eb4b50071abd3e683b0c3678543fff3 (
plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
name: test_everything
on: [push]
jobs:
test_stdlib_on_jvm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/workflows/setup_aedifex
- run: cd ./stdlib/ && ../lux.sh with jvm with bibliotheca test
test_aedifex:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/workflows/setup_aedifex
- run: cd ./stdlib/ && ../lux.sh with aedifex test
test_stdlib_on_node_js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/workflows/setup_aedifex
# https://github.com/actions/setup-node
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: cd ./stdlib/ && ../lux.sh with js with bibliotheca test
test_stdlib_on_python_3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/workflows/setup_aedifex
# https://github.com/actions/setup-python
- uses: actions/setup-python@v2
with:
python-version: '3.9'
architecture: 'x64'
- run: cd ./stdlib/ && ../lux.sh with python with bibliotheca test
test_stdlib_on_ruby:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/workflows/setup_aedifex
# https://github.com/actions/setup-ruby
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.6'
- run: cd ./stdlib/ && ../lux.sh with ruby with bibliotheca test
test_stdlib_on_lua:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/workflows/setup_aedifex
# https://github.com/marketplace/actions/setup-lua-luajit
- uses: xpol/setup-lua@v0.3
with:
lua-version: "5.3.5"
- run: cd ./stdlib/ && ../lux.sh with lua with bibliotheca test
|