Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

add ci jobs #2

Merged
merged 4 commits into from
Oct 9, 2023
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
18 changes: 18 additions & 0 deletions .github/workflows/macos-compilation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Macos make

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3

- name: Build
run: cd philo; make
18 changes: 18 additions & 0 deletions .github/workflows/ubuntu-compilation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Ubuntu make

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Build
run: cd philo; make
4 changes: 2 additions & 2 deletions philo/philosophers.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
/* ::: :::::::: */
/* philosophers.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: malatini <[email protected]> +#+ +:+ +#+ */
/* By: mahautlatinis <[email protected] +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/06/29 17:37:13 by malatini #+# #+# */
/* Updated: 2021/07/23 19:57:30 by mahautlat ### ########.fr */
/* Updated: 2023/10/09 21:25:28 by mahautlatin ### ########.fr */
/* */
/* ************************************************************************** */

Expand Down
Loading