Skip to content

Update html font-family to generic web fonts #49

Update html font-family to generic web fonts

Update html font-family to generic web fonts #49

Workflow file for this run

name: Run tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install system dependencies
run:
sudo apt-get install cpanminus sqlite3
- name: Install perl dependencies
run: |
sudo apt-get -y install libconfig-tiny-perl libdbi-perl libdancer2-perl libdata-structure-util-perl libdigest-sha-perl libencode-perl libmoo-perl libsession-storage-secure-perl libtime-piece-perl libtry-tiny-perl libnamespace-clean-perl libstrictures-perl
sudo cpanm -n Crypt::Eksblowfish::Bcrypt Crypt::Random Cwd DBD::SQLite Dancer2::Session::Cookie HTTP::Status MooX::ClassAttribute Plack::Middleware::TrailingSlashKiller Scalar::Util Template::Toolkit
- name: Install perl test dependencies
run: |
# Test::More and File::Spec are provided by perl-modules-*
sudo apt-get -y install libtest-warnings-perl libtest-exception-perl libtest-deep-perl libfile-temp-perl libfile-path-perl libtest-perl-critic-perl libtest-pod-perl
sudo cpanm -n Test::PerlTidy Plack::Test
- name: Check out branch
uses: actions/checkout@v2
- name: Run lint tests
env:
TEST_AUTHOR: 1
run:
prove -wmlv t
- name: Run integration tests
run: prove -wmlrv t/integration
- name: Run unit tests
run: prove -wmlrv t/unit