Skip to content

bugfix, misc: Adding missing dependencies and future needed ones #81

bugfix, misc: Adding missing dependencies and future needed ones

bugfix, misc: Adding missing dependencies and future needed ones #81

Workflow file for this run

name: Install Python, pixi, and project
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
env:
PYTHON_VERSION: "3.10"
PIXI_VERSION: "v0.13.0"
SETUP_PIXI_VERSION: "v0.5.1"
jobs:
Install-Informatics-Pipeline:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install Pixi
uses: prefix-dev/setup-pixi@${{ env.SETUP_PIXI_VERSION }}

Check failure on line 30 in .github/workflows/tests.yaml

View workflow run for this annotation

GitHub Actions / Install Python, pixi, and project

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yaml (Line: 30, Col: 15): Unrecognized named-value: 'env'. Located at position 1 within expression: env.SETUP_PIXI_VERSION
with:
pixi-version: ${{ env.PIXI_version }}
cache: true
- name: Install repository
run: |
pixi install
- name: Run pytest
run: |
pixi run python -m pytest -v