Skip to content

Improved CI workflow #51

Improved CI workflow

Improved CI workflow #51

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build and test on macOS
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- run: |
gem install xcpretty
make test | xcpretty -c && exit ${PIPESTATUS[0]}