set u_3 to 0 at the top cell face #11592
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: CodeCov | |
on: | |
push: | |
branches: | |
- main | |
- trying | |
- staging | |
tags: '*' | |
pull_request: | |
jobs: | |
codecov: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2.2.0 | |
- name: Set up Julia | |
uses: julia-actions/setup-julia@latest | |
with: | |
version: 1.9 | |
- 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@v1.0.7 | |
with: | |
token: ${{secrets.CODECOV_TOKEN}} | |
if: success() |