-
-
Notifications
You must be signed in to change notification settings - Fork 19
44 lines (39 loc) · 1013 Bytes
/
tests.yml
File metadata and controls
44 lines (39 loc) · 1013 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
37
38
39
40
41
42
43
44
name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v6
- uses: julelang/setup-jule@v1
with:
version: dev
directory: .
add-to-path: true
- 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 - strings
run: |
julec test -o test strings
git update-index --add --chmod=-x test
chmod +x test
./test