Skip to content

Commit

Permalink
Merge pull request #24 from bjornwallner/mapping
Browse files Browse the repository at this point in the history
DockQ v2.0
  • Loading branch information
clami66 authored Apr 17, 2024
2 parents 7a0a1c4 + 0b99811 commit 61c8409
Show file tree
Hide file tree
Showing 38 changed files with 1,990 additions and 16,960 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI

on: [push, pull_request, workflow_dispatch]

env:
MIN_COVERAGE_REQUIRED: 80


jobs:
test:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
timeout-minutes: 10
defaults:
run:
shell: bash -l {0}

steps:
- uses: actions/checkout@v3
- name: Test outputs
run: |
python -m pip install .
python -m pip install coverage
bash run_test.sh
- name: Test with old biopython
run: |
python -m pip install biopython==1.79
bash run_test.sh
- name: Coverage
run: |
coverage report
test $(coverage report | grep TOTAL | awk '{ print $4 }' | tr -d "%") -ge $MIN_COVERAGE_REQUIRED
Loading

0 comments on commit 61c8409

Please sign in to comment.