-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9629c8d
commit 85137dc
Showing
2 changed files
with
36 additions
and
21 deletions.
There are no files selected for viewing
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
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 |
This file was deleted.
Oops, something went wrong.