Skip to content

Commit

Permalink
testing last release
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch committed May 14, 2024
1 parent 68c98e0 commit a131051
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/example_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,30 @@ jobs:
fail-fast: false
matrix:
os: [macos-12, macos-13, macos-14]
python-version: [3.x]
python_version: [3.x]
sumo_version: [head, release]
runs-on: ${{ matrix.os }}

steps:
- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.python_version }}

- name: Install Python dependencies
run: python -m pip install --upgrade pip numpy

- run: brew tap dlr-ts/sumo

- run: brew install --with-examples --HEAD sumo
- name: Install SUMO release
if: matrix.sumo_version == 'release'
run: brew install --with-examples sumo

- name: Install SUMO HEAD
if: matrix.sumo_version == 'head'
run: brew install --with-examples --HEAD sumo

- run: python $(brew --prefix sumo)/share/sumo/docs/examples/runAll.py

0 comments on commit a131051

Please sign in to comment.