-
-
Notifications
You must be signed in to change notification settings - Fork 8
45 lines (40 loc) · 1.01 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
name: Tests
on: [push, pull_request]
jobs:
build:
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
extra-command: version
- name: Test - math
run: |
julec test -o test math
git update-index --add --chmod=-x test
chmod +x test
./test
- name: Test - search
run: |
julec test -o test search
git update-index --add --chmod=-x test
chmod +x test
./test
- name: Test - sort
run: |
julec test -o test sort
git update-index --add --chmod=-x test
chmod +x test
./test
- name: Test - string
run: |
julec test -o test string
git update-index --add --chmod=-x test
chmod +x test
./test