fix[next]: make past_to_itir cached in default transforms #3540
Workflow file for this run
This file contains 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: Code Quality | |
on: | |
push: | |
branches: | |
- main | |
- gtir # TODO(tehrengruber): remove after GTIR refactoring #1582 | |
pull_request: | |
branches: | |
- main | |
- gtir # TODO(tehrengruber): remove after GTIR refactoring #1582 | |
jobs: | |
code-quality: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
cache: 'pip' | |
cache-dependency-path: | | |
**/pyproject.toml | |
**/constraints.txt | |
**/requirements-dev.txt | |
- uses: pre-commit/[email protected] |