We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdf56e1 commit a670ed4Copy full SHA for a670ed4
.github/workflows/bnf-pytest.yml
@@ -28,9 +28,17 @@ jobs:
28
python-version: ${{ matrix.python-version }}
29
enable-cache: true
30
31
+ - name: temp
32
+ run: |
33
+ which antlr4
34
+ echo $PATH
35
+ file /tmp/antlr4
36
+ ls -alh /tmp/antlr4
37
+ cat /tmp/antlr4
38
+
39
- name: dependencies
40
working-directory: bnf
- run: uv sync --locked --extra dev
41
+ run: uv sync --locked --extra dev --verbose
42
43
- name: pytest
44
bnf/setup.py
@@ -20,7 +20,7 @@ def generate_antlr_parsers(self):
20
print(f"Generating parser for {grammar}...")
21
subprocess.run(
22
[
23
- "antlr4",
+ "/tmp/antlr4",
24
"-Dlanguage=Python3",
25
str(grammar_path),
26
"-visitor",
0 commit comments