Add the creation of a TUV-x photolysis calculator to the MUSICA wrapper #123
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"' |