Skip to content

Merge branch 'main' into jmoreira01 #2

Merge branch 'main' into jmoreira01

Merge branch 'main' into jmoreira01 #2

Workflow file for this run

name: m01ex00
on:
push:
branches:
- jmoreira01
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake g++ make
- name: Build and run tests
run: |
cd Modules/Module01/ex00
mkdir build
cd build
cmake ..
make
ctest --output-on-failure