Skip to content

update metadata cli #63

update metadata cli

update metadata cli #63

Workflow file for this run

name: test
on: [push,pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: gwasstudio
environment-file: environment.yml
auto-update-conda: true
auto-activate-base: false
python-version: ${{ matrix.python-version }}
- name: Install the project
shell: bash -el {0}
run: |
make dependencies_dev
make install
- name: Test version
shell: bash -el {0}
run: |
make test