Skip to content

manual_tests_CPU

manual_tests_CPU #7

# This is a basic workflow that is manually triggered
name: Manual workflow
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
name:
description: 'marker'
default: 'not-slow'
required: true
type: string
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
tests:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Make the default shell a login shell, so that conda is initialised properly
defaults:
run:
shell: bash -el {0}
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Setup Miniforge
uses: conda-incubator/setup-miniconda@v2
with:
miniforge-version: latest
python-version: "3.10"
- name: pip install
run: |
pip install wakis
pip install matplotlib pytest
- name: Print versions
run: conda list
- name: Run pytest
run: python -m pytest --color=yes -v tests -m ${{ inputs.marker }}