Merge pull request #28 #78
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: Unit test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unit-test: | |
name: Check unit test | |
timeout-minutes: 30 | |
runs-on: macos-14 | |
steps: | |
- name: Set Xcode | |
run: sudo xcode-select -s /Applications/Xcode_16.1.app/Contents/Developer | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
- name: Install xcbeautify | |
run: brew install xcbeautify | |
- name: Run unit test | |
run: ./Tools/Test/run-unit-tests.sh |