wip: fix MSVC CI by adding opus_types shim #4
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: DNN generator lint | |
| on: | |
| push: | |
| paths: | |
| - 'dnn/**' | |
| - '.github/workflows/dnn-generator-lint.yml' | |
| pull_request: | |
| paths: | |
| - 'dnn/**' | |
| jobs: | |
| msvc-compat-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - name: Run DNN MSVC compatibility linter | |
| run: | | |
| python3 dnn/torch/check_msvc_compat.py |