Adjust dependency so MS2 apps will build #197
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: Run Pre-Commit | |
| on: | |
| pull_request: {} | |
| push: | |
| paths-ignore: | |
| - 'examples/**' | |
| branches: | |
| - dev | |
| - main | |
| jobs: | |
| pre-commit: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| python-version: ['3.9', '3.10', '3.11'] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v3 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Set file mode to false | |
| run: | | |
| git config core.filemode false | |
| - uses: pre-commit/action@v2.0.3 |