Fix format with pre-commit #2
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: "Fallback: Test Next (CPU)" | ||
| on: | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| paths: # Inverse of corresponding workflow | ||
| - "src/gt4py/cartesian/**" | ||
| - "tests/cartesian_tests/**" | ||
| - "examples/**" | ||
| - "*.md" | ||
| - "*.rst" | ||
| jobs: | ||
| # Get Python versions from reusable workflow | ||
| get-python-versions: | ||
| uses: ./.github/workflows/shared/get-python-versions.yml | ||
| test-next: | ||
| needs: get-python-versions | ||
| strategy: | ||
| matrix: | ||
| codegen-factor: [internal, dace] | ||
| mesh-factor: [nomesh, atlas] | ||
| os: ["ubuntu-latest"] | ||
| python-version: ${{ fromJson(needs.get-python-versions.outputs.python-versions) }} | ||
| runs-on: ${{ matrix.os }} | ||
| steps: | ||
| - run: 'echo "No build required"' | ||