Skip to content

Updates dependences with sunpy>=7.0.1 #77

Updates dependences with sunpy>=7.0.1

Updates dependences with sunpy>=7.0.1 #77

Workflow file for this run

# This is a basic workflow that is manually triggered
name: PyTest
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
push:
branches:
- 'master'
release:
types: [published]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Checkout PyThea
uses: actions/checkout@master
- name: Create a virtual environment
run: python3 -m venv env
- name: Activate the enviroment
run: source env/bin/activate
- name: Install requirements
run: pip install 'PyThea[tests]'
- name: pytest
run: python -m pytest