Skip to content

Commit

Permalink
if tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed May 15, 2024
1 parent add97a7 commit e537570
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/os_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,33 @@ jobs:
strategy:
matrix:
include:
- runner: ubuntu-22.04
python-version: "3.12"
style: True
- runner: ubuntu-20.04
python-version: 3.8
style: True
- runner: ubuntu-20.04
python-version: 3.8
style: True
- runner: windows-2022
python-version: "3.12"
style: False
- runner: windows-2019
python-version: 3.8
style: False
- runner: macos-14
python-version: "3.12"
style: False
- runner: macos-13
python-version: "3.11"
style: False
- runner: macos-12
python-version: "3.10"
style: False
- runner: macos-11
python-version: 3.9
- runner: ubuntu-20.04
python-version: 3.8
style: False

steps:
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -52,6 +65,13 @@ jobs:
repository: SpiNNakerManchester/SupportScripts
path: support

- name: Install pip, etc
if: ${{ matrix.check == TRUE }}
uses: ./support/actions/python-tools
- name: Install mypy
if: ${{ matrix.check == TRUE }}
run: pip install mypy

- name: Install Spinnaker Dependencies
uses: ./support/actions/install-spinn-deps
with:
Expand Down

0 comments on commit e537570

Please sign in to comment.