Skip to content

Create python-package-conda.yml #1

Create python-package-conda.yml

Create python-package-conda.yml #1

name: Python Package using Conda
on: [push]
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install package and dependencies
run: |
pip install .[test,gui]
- name: Test with pytest
run: |
pytest --coverage src/odmltables