Skip to content

Chore(deps): Bump the github-actions group across 1 directory with 2 updates #556

Chore(deps): Bump the github-actions group across 1 directory with 2 updates

Chore(deps): Bump the github-actions group across 1 directory with 2 updates #556

Workflow file for this run

name: 🍎 MacOS
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
name: ${{ matrix.config.name }} - Build and test
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- { name: "MacOS Latest", os: macos-latest, build_type: "Release" }
steps:
- name: Checkout atta
uses: actions/checkout@v5
- name: Configure
run: |
mkdir build
cd build
cmake ..
- name: Build
run: cmake --build build --parallel --config ${{ matrix.config.build_type }}
- name: Test
run: ctest
working-directory: build