std::math::big: add the abs method to the Int #286
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
name: Tests [Clang] - Ubuntu | |
on: [push, pull_request] | |
jobs: | |
build-and-exec: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julelang/ci@main | |
- name: Test - Standard Library | |
run: | | |
julec --compiler clang -o test tests/std | |
./test | |
- name: Test - Array OOP | |
run: | | |
julec --compiler clang -o test tests/array_oop | |
./test | |
- name: Assertion | |
run: | | |
julec --compiler clang -o test tests/assertion | |
./test | |
- name: Test - Basic Calculator | |
run: | | |
julec --compiler clang -o test tests/basic_calculator | |
- name: Test - Concurrency | |
run: | | |
julec --compiler clang -o test tests/concurrency | |
./test | |
- name: Test - Exceptionals | |
run: | | |
julec --compiler clang -o test tests/exceptionals | |
./test | |
- name: Test - Generics | |
run: | | |
julec --compiler clang -o test tests/generics | |
./test | |
- name: Test - Levenshtein Distance | |
run: | | |
julec --compiler clang -o test tests/levenshtein_distance | |
./test | |
- name: Test - Map OOP | |
run: | | |
julec --compiler clang -o test tests/map_oop | |
./test | |
- name: Test - Operator Overloading | |
run: | | |
julec --compiler clang -o test tests/operator_overloading | |
./test | |
- name: Test - QuickSort | |
run: | | |
julec --compiler clang -o test tests/quicksort | |
./test | |
- name: Test - Sleep | |
run: | | |
julec --compiler clang -o test tests/sleep | |
./test | |
- name: Test - Syntax | |
run: | | |
julec --compiler clang -o test tests/syntax | |
./test | |
- name: Test - Traits | |
run: | | |
julec --compiler clang -o test tests/traits | |
./test |