We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bae603 commit eb09eb3Copy full SHA for eb09eb3
1 file changed
.github/workflows/ci.yaml
@@ -295,13 +295,17 @@ jobs:
295
uses: andstor/file-existence-action@v1
296
with:
297
files: "parser/python.rs"
298
+ - if: runner.os == 'Windows'
299
+ name: Force python.lalrpop to be lf # actions@checkout ignore .gitattributes
300
+ run: |
301
+ set file parser/python.lalrpop; ((Get-Content $file) -join "`n") + "`n" | Set-Content -NoNewline $file
302
- name: Install lalrpop
303
if: steps.generated_parser.outputs.files_exists == 'false'
304
uses: baptiste0928/cargo-install@v1
305
306
crate: lalrpop
307
version: "0.19.8"
- - name: Run lalpop
308
+ - name: Run lalrpop
309
310
run: lalrpop parser/python.lalrpop
311
0 commit comments