Add tool to plot rupture paths #74
Workflow file for this run
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: Check requirements.txt git URLs are properly formatted | |
| on: pull_request | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: sed -ri '/git\+/ { /\.git(@\w+)?$/! s/(@\w+)?$/.git\1/ }' requirements.txt | |
| - uses: parkerbxyz/suggest-changes@v2 | |
| with: | |
| comment: 'Please change the following dependencies for consistency.' | |
| event: 'REQUEST_CHANGES' |