Update temperatures in TUV-x before calculating rate constants #182
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"' | |
test_musica_api_no_install: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: build Docker image | |
run: docker build -t musica-no-install -f test/docker/Dockerfile.musica.no_install . | |
- name: run tests in container | |
run: docker run --name test-container -t musica-no-install bash -c 'make test ARGS="--rerun-failed --output-on-failure -j8"' |