Implement ccpp_const_get_index in to_be_ccppized to avoid circular dependencies #163
Workflow file for this run
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 | |
on: [pull_request,workflow_dispatch] | |
jobs: | |
test_musica_api: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: build Docker image | |
run: docker build -t musica -f test/docker/Dockerfile.musica . | |
- name: run tests in container | |
run: docker run --name test-container -t musica bash -c 'make test ARGS="--rerun-failed --output-on-failure -j8"' |