Merge pull request #51 from Ofacy/export-env-printf #74
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: main | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout mshell | |
uses: actions/checkout@v4 | |
with: | |
submodules: false | |
token: ${{ secrets.MSHELL_PAT }} | |
- name: Checkout libft | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.PAT }} | |
repository: UnRenardQuiDab/libft | |
path: libft | |
- name: Checkout vector | |
uses: actions/checkout@v4 | |
with: | |
repository: UnRenardQuiDab/vector_c | |
path: vector | |
- name: Checkout tester | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.MSHELL_PAT }} | |
repository: Ofacy/minishell-tester | |
path: tester | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.12 | |
- name: Norminette | |
run: | | |
pip3 install norminette | |
norminette | |
- name: Build | |
run: make |