Skip to content

Minishell version 0.1 #21

Minishell version 0.1

Minishell version 0.1 #21

Workflow file for this run

name: Compilation Makefile
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y make gcc libreadline-dev
- name: Run Makefile
run: make all