Skip to content

Commit

Permalink
Create python-package-conda.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaSprenger committed May 19, 2023
1 parent 583cf39 commit 784d231
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/python-package-conda.yml
@@ -0,0 +1,22 @@
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

0 comments on commit 784d231

Please sign in to comment.