Merge pull request #586 from biralavor/585-fix-github-action-vm-depen… #661
This file contains hidden or 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
| # **************************************************************************** # | |
| # # | |
| # ::: :::::::: # | |
| # minishell_tester_pipes.yml :+: :+: :+: # | |
| # +:+ +:+ +:+ # | |
| # By: umeneses <[email protected]> +#+ +:+ +#+ # | |
| # +#+#+#+#+#+ +#+ # | |
| # Created: 2024/09/23 16:00:54 by umeneses #+# #+# # | |
| # Updated: 2024/09/26 08:39:39 by umeneses ### ########.fr # | |
| # # | |
| # **************************************************************************** # | |
| name: minishell tester >> pipes | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - '**feature**' | |
| - '**feat**' | |
| - '**bugfix**' | |
| - '**fix**' | |
| - '**release**' | |
| pull_request: | |
| branches: | |
| - main | |
| - '**feature**' | |
| - '**feat**' | |
| - '**bugfix**' | |
| - '**fix**' | |
| - '**release**' | |
| jobs: | |
| pipes: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 2 | |
| defaults: | |
| run: | |
| working-directory: ./ | |
| 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 | |
| - name: Submodule Init | |
| run: git submodule init && git submodule update | |
| - name: Running Tester for Pipes | |
| run: cd minishell_tester && ./tester pipes | |
| # :: source minishell_tester repository :: | |
| # https://github.com/LucasKuhn/minishell_tester |