renaming self.node to self.cur_node in parser breaks main fixed. #951
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: Linting and Pre-commit checks for jaclang | |
on: | |
pull_request: | |
paths: | |
- "jac/**" | |
push: | |
branches: | |
- main | |
paths: | |
- "jac/**" | |
jobs: | |
pre-commit-jaclang: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: jac | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.12 | |
- name: Install pre-commit | |
run: pip install pre-commit | |
- name: Run pre-commit hooks | |
run: pre-commit run --files $(find . -type f) |