Skip to content

Commit

Permalink
Merge pull request #567 from mbhall88/master
Browse files Browse the repository at this point in the history
Replace travis with actions
  • Loading branch information
tseemann authored Oct 18, 2023
2 parents 2af674c + c3d62fb commit 87d05f7
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 23 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y libstdc++6 liblzma5 libbz2-1.0 bioperl
- name: Set PATH for binaries
run: |
echo "$PWD/bin:$PWD/binaries/noarch:$PWD/binaries/linux:$PATH" >> $GITHUB_ENV
- name: Check binaries
run: |
! (ldd $PWD/binaries/linux/freebayes | grep 'not found')
! (ldd $PWD/binaries/linux/vcfuniq | grep 'not found')
! (ldd $PWD/binaries/linux/samtools | grep 'not found')
! (ldd $PWD/binaries/linux/bcftools | grep 'not found')
- name: Check snippy versions and configurations
run: |
snippy --version
snippy --check
snippy-core --version
snippy-core --check
- name: Run tests
run: |
make -C test
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

0 comments on commit 87d05f7

Please sign in to comment.