FIX: Repaired piptest CI job #96
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) 2025 Ernst Strüngmann Institute (ESI) for Neuroscience | |
# in Cooperation with Max Planck Society | |
# | |
# SPDX-License-Identifier: BSD-3-Clause | |
# | |
name: tests | |
on: | |
# Triggers the workflow on push or pull request events | |
push: | |
branches: [main, dev] | |
pull_request: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 5 | |
defaults: | |
run: | |
shell: bash -el {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up miniforge | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
channels: conda-forge | |
environment-file: acme.yml | |
miniforge-version: latest | |
- name: Install ACME | |
run: | | |
pip install -e .[dev] | |
- name: Lint with flake8 | |
run: | | |
pip install flake8 | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Test with pytest | |
run: | | |
pytest --color=yes --tb=short --verbose |