Add sim_year namelist default values for 1850 (pre-industrial) (#439) #23
This file contains hidden or 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: | |
| push: | |
| branches: | |
| - main | |
| - development | |
| workflow_dispatch: | |
| pull_request: | |
| 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"' |