if tasks #3
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
# Copyright (c) 2020 The University of Manchester | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# This workflow will install Python dependencies, run tests, lint and rat 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: Os Actions | ||
on: [push] | ||
jobs: | ||
os: | ||
runs-on: ${{ matrix.runner }} | ||
timeout-minutes: 10 | ||
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 | ||
style: False | ||
steps: | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Checkout SupportScripts | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: SpiNNakerManchester/SupportScripts | ||
path: support | ||
- name: Install pip, etc | ||
if: ${{ matrix.check == TRUE }} | ||
Check failure on line 69 in .github/workflows/os_actions.yml GitHub Actions / Os ActionsInvalid workflow file
|
||
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: | ||
repositories: SpiNNUtils SpiNNMachine | ||
install: true | ||
- name: Run Install | ||
uses: ./support/actions/run-install | ||
- name: install pytest | ||
run: | | ||
python -m pip install pytest-timeout pytest-forked pytest-progress | ||
- name: Test with pytest | ||
run: pytest unittests | ||
- name: Integration tests | ||
env: | ||
SPALLOC_USER: ${{ secrets.SPALLOC_USER }} | ||
SPALLOC_PASSWORD: ${{ secrets.SPALLOC_PASSWORD }} | ||
run: pytest spinnman_integration_tests |