Skip to content

[TEST] Testing Actions #3

[TEST] Testing Actions

[TEST] Testing Actions #3

Workflow file for this run

name: setup_python
on:
pull_request:
push:
branches: '**'
jobs:
python-env:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Get present working directory
uses: mathiasvr/[email protected]
id: current_directory
with:
run: pwd
- name: Install AstroPlasma dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/requirements-dev.txt
- name: Test AstroPlasma
env:
PYTHONPATH: ${{ steps.current_directory.outputs.stdout }}
run: |
echo $PYTHONPATH
ls $PYTHONPATH
pytest