fix final ctk_object cleanup #1098
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: macOS - Build & Unit Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
macos-build-unit-tests: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Compile - macOS | |
run: cd src/ && make -j mac | |
- name: Unit Tests - macOS | |
run: cd src/ && export PATH=$PATH:$(pwd) && cd test/ && python test.py |