Allow wrapLines in file references #159
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Python Package | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
update_grammar: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "zulu" | |
java-version: 11 | |
- name: Download ANTLR 4.13.1 | |
working-directory: /tmp | |
run: | | |
wget https://www.antlr.org/download/antlr-4.13.1-complete.jar | |
- name: Generate grammar | |
working-directory: kin/grammar | |
run: | | |
java -jar /tmp/antlr-4.13.1-complete.jar PBXProj.g4 -Dlanguage=Python3 | |
- name: Upload grammar | |
uses: actions/upload-artifact@master | |
with: | |
name: grammar | |
path: kin/grammar | |
build: | |
needs: update_grammar | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.x"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download grammar | |
uses: actions/download-artifact@master | |
with: | |
name: grammar | |
path: kin/grammar | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install pytest | |
pip install . | |
- name: Test | |
run: | | |
./tests/tester.py |