Skip to content

#44 test add test for parse texture (#47) #142

#44 test add test for parse texture (#47)

#44 test add test for parse texture (#47) #142

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