43 feat anti aliasing and multi threading #139
Workflow file for this run
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: ๐ฎ dev-validation | |
on: | |
push: | |
branches: [dev] | |
pull_request: | |
branches: [dev] | |
jobs: | |
check-norminette: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: ๐ Install 42-norminette | |
run: | | |
python3 -m venv norminette_venv | |
source norminette_venv/bin/activate | |
python3 -m pip install --upgrade pip setuptools | |
python3 -m pip install --upgrade norminette | |
- name: ๐ฎ Run norminette | |
run: | | |
source norminette_venv/bin/activate | |
norminette | |
check-compile-flags: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: ๐ Install build-essentials | |
run: brew install gcc cmake make | |
- name: ๐ฉ Compile with options -Wall -Wextra -Werror | |
run: | | |
mkdir build | |
cd build | |
cmake .. | |
make |