Skip to content

Commit

Permalink
install bio::perl natively in the github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lskatz committed Aug 3, 2023
1 parent 9dadf03 commit 6c9a684
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ jobs:
perl: [ '5.34' ]
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
- name: apt-get to prepare for cached perl packages
run: |
sudo apt-get update -y
sudo apt-get install -y libdb-dev sqlite3 libgd-dev libsqlite3-dev libberkeleydb-perl libcdb-file-perl
- uses: actions/checkout@v3
- uses: shogo82148/actions-setup-perl@v1
with:
Expand All @@ -18,6 +22,7 @@ jobs:
install-modules-args: --with-develop --with-configure
install-modules: |
JSON
Bio::Perl
- run: |
echo "hello world!"
# prove -lv t

0 comments on commit 6c9a684

Please sign in to comment.