Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/minishell_tester_146_items.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
- name: Starting Github Actions
uses: actions/[email protected]

- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libreadline-dev

- name: Building Program with MiniShell Makefile
run: make

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/minishell_tester_bonus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
- name: Starting Github Actions
uses: actions/[email protected]

- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libreadline-dev

- name: Building Program with MiniShell Makefile
run: make bonus

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/minishell_tester_builtins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
- name: Starting Github Actions
uses: actions/[email protected]

- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libreadline-dev

- name: Building Program with MiniShell Makefile
run: make

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/minishell_tester_extras.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ jobs:
steps:
- name: Starting Github Actions
uses: actions/[email protected]

- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libreadline-dev

- name: Building Program with MiniShell Makefile
run: make
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/minishell_tester_heredoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
- name: Starting Github Actions
uses: actions/[email protected]

- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libreadline-dev

- name: Building Program with MiniShell Makefile
run: make

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/minishell_tester_mandatory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
- name: Starting Github Actions
uses: actions/[email protected]

- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libreadline-dev

- name: Building Program with MiniShell Makefile
run: make

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/minishell_tester_pipes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
- name: Starting Github Actions
uses: actions/[email protected]

- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libreadline-dev

- name: Building Program with MiniShell Makefile
run: make

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/minishell_tester_redirects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ jobs:
steps:
- name: Starting Github Actions
uses: actions/[email protected]

- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libreadline-dev

- name: Building Program with MiniShell Makefile
run: make
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/minishell_tester_syntax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
- name: Starting Github Actions
uses: actions/[email protected]

- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libreadline-dev

- name: Building Program with MiniShell Makefile
run: make

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/minishell_tester_valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ jobs:
steps:
- name: Starting Github Actions
uses: actions/[email protected]

- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libreadline-dev

- name: Install Aptitude
run: sudo apt-get install aptitude
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/norminette.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ jobs:
steps:
- name: Starting Github Actions
uses: actions/[email protected]

- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libreadline-dev

- name: Building Program with MiniShell Makefile
run: make
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/our_own_tester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
- name: Starting Github Actions
uses: actions/[email protected]

- name: Install CUnit
run: sudo apt-get update && sudo apt-get install -y libcunit1 libcunit1-doc libcunit1-dev
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libreadline-dev

- name: Running Tester Makefile
run: make
Expand Down
Loading