Skip to content

Commit

Permalink
moved CI to GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
eead-csic-compbio committed Nov 14, 2024
1 parent 9629c8d commit 85137dc
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 21 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# See the LICENSE ans scripts distributed with this work and for additional information
# regarding copyright ownership.

name: "CI"

on:
push:
branches:
- master
pull_request:

defaults:
run:
working-directory: ./

jobs:
tests:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: shogo82148/actions-setup-perl@v1
with:
perl-version: "5.28"

- name: Install dependencies
run: |
sudo apt-get install -y r-base libdb-dev libgd-dev cpanminus
cpanm --sudo -v --installdeps --notest --cpanfile cpanfile .
make install_auto
shell: bash

- name: Run tests
run: |
make test
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

0 comments on commit 85137dc

Please sign in to comment.