Skip to content

fix(semantic-release): downgrade conventional-changelog-conventionalcommits due to release error #88

fix(semantic-release): downgrade conventional-changelog-conventionalcommits due to release error

fix(semantic-release): downgrade conventional-changelog-conventionalcommits due to release error #88

Workflow file for this run

name: EpiScanner Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
python-version: ["3.10"]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
mamba-version: "*"
environment-file: conda/env-base.yaml
channels: conda-forge,nodefaults
activate-environment: episcanner-downloader
use-mamba: true
miniforge-variant: Mambaforge
- name: Create env file
run: envsubst < env.tpl > .env
- name: Prepare volume for episcanner data
run: |
mkdir -p /home/runner/work/epi-scanner/epi-scanner/data
chmod 777 -R /home/runner/work/epi-scanner/epi-scanner/data
- name: Install dependencies
run: |
poetry install
- name: Linting
run: |
pre-commit install
pre-commit run --all-files
- name: Pytest
run: |
make tests