📝 update years of copyright #98
Workflow file for this run
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
name: Linux | |
on: | |
- push | |
- pull_request | |
jobs: | |
ubuntu-latest: | |
name: ubuntu-latest | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get update | |
- run: sudo apt-get -y install libextutils-depends-perl libextutils-pkgconfig-perl libimage-magick-perl libreadonly-perl libtest-deep-perl libtest-requires-perl libtest-simple-perl libtiff-dev libperl-dev perl libtiff-tools | |
- run: perl Makefile.PL | |
- run: make test TEST_VERBOSE=1 | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: github/super-linter@v4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
FILTER_REGEX_EXCLUDE: (Makefile.PL|tiffperl.h) |