Revert "style: use pointer to const
(#98)"
#186
Workflow file for this run
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 [GCC] - Ubuntu | |
on: [push, pull_request] | |
jobs: | |
build-and-exec: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Panquesito7/[email protected] | |
with: | |
version: dev | |
directory: . | |
add-to-path: true | |
- name: Test - Standard Library | |
run: | | |
julec --compiler gcc -o test tests/std | |
./test | |
- name: Test - Array OOP | |
run: | | |
julec --compiler gcc -o test tests/array_oop | |
./test | |
- name: Assertion | |
run: | | |
julec --compiler gcc -o test tests/assertion | |
./test | |
- name: Test - Basic Calculator | |
run: | | |
julec --compiler gcc -o test tests/basic_calculator | |
- name: Test - Concurrency | |
run: | | |
julec --compiler gcc -o test tests/concurrency | |
./test | |
- name: Test - Exceptionals | |
run: | | |
julec --compiler gcc -o test tests/exceptionals | |
./test | |
- name: Test - Generics | |
run: | | |
julec --compiler gcc -o test tests/generics | |
./test | |
- name: Test - Levenshtein Distance | |
run: | | |
julec --compiler gcc -o test tests/levenshtein_distance | |
./test | |
- name: Test - Map OOP | |
run: | | |
julec --compiler gcc -o test tests/map_oop | |
./test | |
- name: Test - QuickSort | |
run: | | |
julec --compiler gcc -o test tests/quicksort | |
./test | |
- name: Test - Sleep | |
run: | | |
julec --compiler gcc -o test tests/sleep | |
./test | |
- name: Test - Syntax | |
run: | | |
julec --compiler gcc -o test tests/syntax | |
./test | |
- name: Test - Traits | |
run: | | |
julec --compiler gcc -o test tests/traits | |
./test |