Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Merge pull request #6 from fcbg-hnp-meeg/dependabot/github_actions/ac… #5

Merge pull request #6 from fcbg-hnp-meeg/dependabot/github_actions/ac…

Merge pull request #6 from fcbg-hnp-meeg/dependabot/github_actions/ac… #5

Workflow file for this run

name: pytest
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }}
cancel-in-progress: true
on: # yamllint disable-line rule:truthy
pull_request:
push:
branches: [main]
workflow_dispatch:
schedule:
- cron: '0 8 * * 1'
jobs:
pytest:
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
python-version: [3.9, "3.10", "3.11"]
name: ${{ matrix.os }} - py${{ matrix.python-version }}
runs-on: ${{ matrix.os }}-latest
defaults:
run:
shell: bash
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
- name: Update pip and setuptools
run: python -m pip install --progress-bar off --upgrade pip setuptools wheel
- name: Install Psychopy
uses: mscheltienne/setup-psychopy@0.1.3
- name: Install package
run: python -m pip install --progress-bar off .[test]
- name: Display system information
run: mrisim-sys_info --developer
- name: Run pytest
run: pytest mrisim --cov=mrisim --cov-report=xml --cov-config=pyproject.toml
- name: Upload to codecov
if: ${{ matrix.os == 'ubuntu' && matrix.python-version == 3.9 }}
uses: codecov/codecov-action@v3
with:
files: ./coverage.xml
flags: unittests # optional
name: codecov-umbrella # optional
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true # optional (default = false)