Merge pull request #6 from boasvdp/add_license #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: assembly_snptyper test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- {os: ubuntu-latest} | |
name: Testing assembly_snptyper ${{ matrix.config.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Conda environment with Micromamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
cache-environment: true | |
environment-file: env.yaml | |
- name: Conda list | |
shell: bash -l {0} | |
run: conda list | |
- name: Test M1UK typing end-to-end | |
shell: bash -l {0} | |
run: bash tests/test_e2e.sh |