Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Action dash #58

Merged
merged 8 commits into from
Feb 20, 2025
14 changes: 7 additions & 7 deletions .github/workflows/python_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,21 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install pip, etc
uses: ./support/actions/python-tools
uses: SpiNNakerManchester/SupportScripts/actions/python-tools@main

- name: Install Spinnaker Dependencies
uses: ./support/actions/install-spinn-deps
uses: SpiNNakerManchester/SupportScripts/actions/install-spinn-deps@main
with:
repositories: >
SpiNNUtils SpiNNMachine SpiNNMan PACMAN
spalloc SpiNNFrontEndCommon
install: true

- name: Install
uses: ./support/actions/run-install
uses: SpiNNakerManchester/SupportScripts/actions/run-install@main

- name: Test with pytest
uses: ./support/actions/pytest
uses: SpiNNakerManchester/SupportScripts/actions/pytest@main
with:
tests: unittests
coverage: ${{ matrix.python-version == 3.12 }}
Expand All @@ -63,17 +63,17 @@ jobs:
run: flake8 spinnaker_testbase unittests

- name: Lint with pylint
uses: ./support/actions/pylint
uses: SpiNNakerManchester/SupportScripts/actions/pylint@main
with:
package: spinnaker_testbase
exitcheck: 31 # Action fails on any message
language: en_GB

- name: Run rat copyright enforcement
if: matrix.python-version == 3.12
uses: ./support/actions/check-copyrights
uses: SpiNNakerManchester/SupportScripts/actions/check-copyrights@main
with:
config_file: rat_asl20.xml
config-file: rat_asl20.xml

- name: Validate CITATION.cff
if: matrix.python-version == 3.12
Expand Down
Loading