-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
trying new approach with CUnit testing framework
- Loading branch information
umeneses
committed
May 10, 2024
1 parent
015894e
commit d3e74d5
Showing
6 changed files
with
535 additions
and
43 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
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,35 @@ | ||
# **************************************************************************** # | ||
# # | ||
# ::: :::::::: # | ||
# ci.yml :+: :+: :+: # | ||
# +:+ +:+ +:+ # | ||
# By: umeneses <umeneses@student.42.fr> +#+ +:+ +#+ # | ||
# +#+#+#+#+#+ +#+ # | ||
# Created: 2024/05/09 19:12:18 by umeneses #+# #+# # | ||
# Updated: 2024/05/09 19:17:48 by umeneses ### ########.fr # | ||
# # | ||
# **************************************************************************** # | ||
|
||
name: test | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: _ci_tdd/test_files | ||
steps: | ||
- name: Starting github actions | ||
uses: actions/checkout@v4.1.4 | ||
|
||
- name: Set up CUnit | ||
run: sudo apt-get update && sudo apt-get install -y libcunit1 libcunit1-doc libcunit1-dev | ||
|
||
- name: Running Tester Makefile | ||
run: make |
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
Oops, something went wrong.