Add date time info to error message when forcing/cyclic data is missing. #902
Workflow file for this run
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: Wflow Server CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| - v1 | |
| tags: '*' | |
| # needed to allow julia-actions/cache to delete old caches that it has created | |
| permissions: | |
| actions: write | |
| contents: read | |
| jobs: | |
| test: | |
| name: WflowServer Julia - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| arch: | |
| - x64 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: julia-actions/cache@v2 | |
| - uses: prefix-dev/setup-pixi@v0.9.0 | |
| with: | |
| pixi-version: "latest" | |
| - name: Prepare pixi | |
| run: pixi run install-julia | |
| - name: Test WflowServer | |
| run: | | |
| pixi run test-wflow-server | |
| - uses: julia-actions/julia-processcoverage@v1 | |
| with: | |
| directories: server/src | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| files: lcov.info | |
| token: ${{ secrets.CODECOV_TOKEN }} |