Add: necessary properties in action0 in order to support bridges over station feature from OpenTTD 15.0-beta3 #913
Workflow file for this run
This file contains hidden or 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: Regression | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| regression: | |
| name: Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macOS-latest, windows-latest] | |
| python-version: ['3.9', '3.10', '3.11', '3.12', 'pypy3.9'] | |
| exclude: | |
| # Prebuilt pillow wheels aren't always available for the relevant PyPy version. | |
| # The Ubuntu runner has zlib headers and can build it locally, but these can't without more work. | |
| - os: macOS-latest | |
| python-version: pypy3.9 | |
| - os: windows-latest | |
| python-version: pypy3.9 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: Checkout tags | |
| shell: bash | |
| run: | | |
| git fetch --depth=1 origin +refs/tags/*:refs/tags/* | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' | |
| cache-dependency-path: setup.py | |
| - name: Install dependencies (PyPy) | |
| if: startsWith(matrix.python-version, 'pypy') | |
| shell: bash | |
| run: | | |
| echo "::group::Update apt" | |
| sudo apt-get update | |
| echo "::endgroup::" | |
| echo "::group::Install dependencies" | |
| sudo apt-get install -y --no-install-recommends \ | |
| libjpeg-dev \ | |
| # EOF | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip setuptools | |
| python -m pip install . | |
| - name: Test | |
| run: make -C regression | |
| shell: bash | |
| env: | |
| NMLC: nmlc |