Fixed unknown coupled BC type when using genBC or svZeroD solver in F… #202
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
| # This workflow checks that all .h/.cpp files have the SPDX copyright header at the top | |
| name: Copyright | |
| on: [push, pull_request] | |
| jobs: | |
| check-license-lines: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Deno | |
| uses: denoland/setup-deno@v1 | |
| with: | |
| deno-version: v1.x | |
| - name: Check License | |
| run: deno run --allow-read jsr:@kt3k/license-checker@3.3.1 |