Add comprehensive unit and manufactured tests for Lagrangian and Flow advection classes #359
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: Duplicate Code Check | |
| on: pull_request | |
| jobs: | |
| duplicate-code-check: | |
| name: Check for duplicate code | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: platisd/duplicate-code-detection-tool@master | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| directories: "src/" | |
| fail_above: 99 |