Skip to content

Test: include OPEN_MAX on linux #12

Test: include OPEN_MAX on linux

Test: include OPEN_MAX on linux #12

Workflow file for this run

name: Tests
on:
push:
paths-ignore: [ "docs/**" ]
pull_request:
branches: [ "master" ]
jobs:
build:
name: Build
runs-on: macos-latest
permissions:
actions: read
contents: read
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
cache-dependency-path: ".github/requirements.txt"
- name: Install Norminette
run: pip install -r .github/requirements.txt
- name: Run Norminette
run: make norme
- name: Run Build
run: make all
- name: Run Test
run: make test