Update functions and introduce model sub-types to support non-constant aerodynamic roughnesses. #1010
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: CodeCov | |
| on: | |
| push: | |
| tags: '*' | |
| pull_request: | |
| jobs: | |
| codecov: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Julia | |
| uses: julia-actions/setup-julia@latest | |
| with: | |
| version: '1.11' | |
| - name: Test with coverage | |
| env: | |
| JULIA_PROJECT: "@." | |
| run: | | |
| julia --project=@. -e 'using Pkg; Pkg.instantiate()' | |
| julia --project=@. -e 'using Pkg; Pkg.test(coverage=true)' | |
| - name: Generate coverage file | |
| env: | |
| JULIA_PROJECT: "@." | |
| run: julia --project=@. -e 'using Pkg; Pkg.add("Coverage"); | |
| using Coverage; | |
| LCOV.writefile("coverage-lcov.info", Codecov.process_folder())' | |
| if: success() | |
| - name: Submit coverage | |
| uses: codecov/codecov-action@v3 | |
| with: | |
| token: ${{secrets.CODECOV_TOKEN}} | |
| if: success() |