Skip to content

🔥 move prettyerr, update errors (mac fix?) #2273

🔥 move prettyerr, update errors (mac fix?)

🔥 move prettyerr, update errors (mac fix?) #2273

Workflow file for this run

name: MacOs
on:
push:
branches:
- '**'
- '!gh-pages'
pull_request:
branches:
- '**'
- '!gh-pages'
jobs:
build:
name: MacOS ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float '}}
runs-on: macos-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
env:
CC: ${{ matrix.cc }}
USE_DOUBLE: ${{ matrix.double }}
USE_DEBUG: 1
strategy:
matrix:
cc: [gcc, clang]
double: [0, 1]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Init submodules
run: git submodule update --init --recursive
- name: Build
run: make
- name: Test
run: make test