Skip to content

Merge branch 'main' of github.com:bihealth/autopvs1 #3

Merge branch 'main' of github.com:bihealth/autopvs1

Merge branch 'main' of github.com:bihealth/autopvs1 #3

Workflow file for this run

name: CI
on: [push]
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: 'true'
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pipenv"
cache-dependency-path: |
Pipfile.lock
- name: Install pipenv and deps
run: |
python -m pip install --upgrade pipenv wheel
make deps
- name: Lint source code
run: make lint
# Test:
# runs-on: ubuntu-latest
# needs:
# - Lint
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
# with:
# lfs: 'true'
# - name: Set up Python 3.12
# uses: actions/setup-python@v5
# with:
# python-version: "3.12"
# cache: "pipenv"
# cache-dependency-path: |
# Pipfile.lock
# - name: Install pipenv and deps
# run: |
# python -m pip install --upgrade pipenv wheel
# make deps
# - name: Install dependencies
# run: make deps
# - name: Run tests
# run: make test
# - name: Build docs
# run: make docs
# - name: Upload backend coverage reports to Codecov
# uses: codecov/codecov-action@v4
# with:
# flags: backend
# directory: backend
# env:
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}