-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ccf5e0
commit 8c214c0
Showing
1 changed file
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
name: Tests [Clang] - Windows | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
build-and-exec: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: julelang/ci@main | ||
|
||
- name: Test - Standard Library | ||
run: | | ||
.\bin\julec --compiler clang -o test tests/std | ||
./test | ||
|
||
- name: Test - Arrays | ||
run: | | ||
.\bin\julec --compiler clang -o test tests/arrays | ||
./test | ||
|
||
- name: Assertion | ||
run: | | ||
.\bin\julec --compiler clang -o test tests/assertion | ||
./test | ||
|
||
- name: Test - Basic Calculator | ||
run: | | ||
.\bin\julec --compiler clang -o test tests/basic_calculator | ||
|
||
- name: Test - Concurrency | ||
run: | | ||
.\bin\julec --compiler clang -o test tests/concurrency | ||
./test | ||
|
||
- name: Test - Exceptionals | ||
run: | | ||
.\bin\julec --compiler clang -o test tests/exceptionals | ||
./test | ||
|
||
- name: Test - Generics | ||
run: | | ||
.\bin\julec --compiler clang -o test tests/generics | ||
./test | ||
|
||
- name: Test - Levenshtein Distance | ||
run: | | ||
.\bin\julec --compiler clang -o test tests/levenshtein_distance | ||
./test | ||
|
||
- name: Test - Maps | ||
run: | | ||
.\bin\julec --compiler clang -o test tests/maps | ||
./test | ||
|
||
- name: Test - Operator Overloading | ||
run: | | ||
.\bin\julec --compiler clang -o test tests/operator_overloading | ||
./test | ||
|
||
- name: Test - QuickSort | ||
run: | | ||
.\bin\julec --compiler clang -o test tests/quicksort | ||
./test | ||
|
||
- name: Test - Sleep | ||
run: | | ||
.\bin\julec --compiler clang -o test tests/sleep | ||
./test | ||
|
||
- name: Test - Syntax | ||
run: | | ||
.\bin\julec --compiler clang -o test tests/syntax | ||
./test | ||
|
||
- name: Test - Traits | ||
run: | | ||
.\bin\julec --compiler clang -o test tests/traits | ||
./test |