发现粘性力功率计算的实现和公式(4.59)有出入 #27
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: msys2-fpm | |
on: | |
push: | |
paths: | |
- "app/**.f90" | |
- "src/**.f90" | |
- "test/**.f90" | |
- "fpm.toml" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "app/**.f90" | |
- "src/**.f90" | |
- "test/**.f90" | |
- "fpm.toml" | |
jobs: | |
build: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: MINGW64 | |
update: true | |
install: | | |
git | |
mingw-w64-x86_64-gcc-fortran | |
mingw-w64-x86_64-gcc-libgfortran | |
mingw-w64-x86_64-fpm | |
- name: fpm build | |
run: | | |
gfortran --version | |
fpm build | |