-
Notifications
You must be signed in to change notification settings - Fork 13
81 lines (66 loc) · 1.66 KB
/
tests.yml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: Tests
on: [push, pull_request]
jobs:
build-and-exec:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- uses: Panquesito7/[email protected]
with:
version: dev
directory: .
add-to-path: true
- name: Test - Standard Library
run: |
julec -o test tests/std
./test
- name: Test - Array OOP
run: |
julec -o test tests/array_oop
./test
- name: Assertion
run: |
julec -o test tests/assertion
./test
- name: Test - Basic Calculator
run: |
julec -o test tests/basic_calculator
- name: Test - Concurrency
run: |
julec -o test tests/concurrency
./test
- name: Test - Exceptionals
run: |
julec -o test tests/exceptionals
./test
- name: Test - Generics
run: |
julec -o test tests/generics
./test
- name: Test - Levenshtein Distance
run: |
julec -o test tests/levenshtein_distance
./test
- name: Test - Map OOP
run: |
julec -o test tests/map_oop
./test
- name: Test - QuickSort
run: |
julec -o test tests/quicksort
./test
- name: Test - Sleep
run: |
julec -o test tests/sleep
./test
- name: Test - Syntax
run: |
julec -o test tests/syntax
./test
- name: Test - Traits
run: |
julec -o test tests/traits
./test