Skip to content

Commit

Permalink
Merge pull request wofr06#87 from andersk/github-actions
Browse files Browse the repository at this point in the history
Run test suite in GitHub Actions
  • Loading branch information
wofr06 authored Jul 10, 2022
2 parents 1407076 + 780c7ac commit 0250bbd
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: "Test suite"

on:
push:
pull_request:

concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true

jobs:
test-suite:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install dependencies
run: |
sudo apt-get -q update
sudo apt-get install --no-install-recommends -qy \
brotli \
cabextract \
csvkit \
djvulibre-bin \
genisoimage \
ghostscript \
gnupg \
groff \
hdf5-tools \
id3v2 \
less \
libarchive-tools \
libreoffice \
locales-all \
lz4 \
lzip \
mediainfo \
p7zip \
pandoc \
poppler-utils \
python3-pygments \
rpm \
source-highlight \
texlive-binaries \
unrar \
unrtf \
vim
- name: Run test suite
run: TERM=ansi ./test.pl -e

0 comments on commit 0250bbd

Please sign in to comment.