This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
Fix CI & initial registered mmio class #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build MacOS | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install-deps | |
run: brew install qt6 fmt googletest | |
- name: configure | |
run: cmake -B build | |
- name: make | |
run: cmake --build build |