updated release.pl #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |