Skip to content

Commit

Permalink
Create tests_clang_windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mertcandav authored Jun 18, 2024
1 parent 7ccf5e0 commit 8c214c0
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions .github/workflows/tests_clang_windows.yml
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

0 comments on commit 8c214c0

Please sign in to comment.