Fix an issue of creating redundant intermediate nodes in the taxonomy tree #42
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
DEVELOPER_DIR: /Applications/Xcode.app/Contents/Developer | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
compiler: [g++, clang++] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: build-centrifuger | |
run: | |
make CXX=${{ matrix.compiler }} | |
- name: test-centrifuger | |
run: | |
./centrifuger | |
macos: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
compiler: [clang++] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: build-centrifuger | |
run: | |
make CXX=${{ matrix.compiler }} | |
- name: test-centrifuger | |
run: | |
./centrifuger |