aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
blob: 6b98a1ad33d6e8aea76f218d92582330a3dc948d (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
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 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 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 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 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 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
      - run: cd ./stdlib/ && lux with lua with bibliotheca test