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

Commit

Permalink
Merge pull request #2 from malatinipro/addCi
Browse files Browse the repository at this point in the history
add ci jobs
  • Loading branch information
mahautlatinis authored Oct 9, 2023
2 parents aeb0a21 + 7312bba commit 7d7d0f2
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
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

0 comments on commit 7d7d0f2

Please sign in to comment.