Skip to content

Commit

Permalink
ci: added tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TimD1 committed Oct 14, 2024
1 parent a5bf84a commit 6c599ae
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: build
name: test

on:
push:
branches: [ "master" ]
branches: [ "master", "dev" ]
pull_request:
branches: [ "master" ]
branches: [ "master", "dev" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: install htslib
run: |
wget https://github.com/samtools/htslib/releases/download/1.17/htslib-1.17.tar.bz2
Expand All @@ -31,3 +31,8 @@ jobs:
cd src
make
./vcfdist -v
- name: test vcfdist
run: |
cd tests
make
./test_vcfdist

0 comments on commit 6c599ae

Please sign in to comment.