Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,32 @@ jobs:
run: cpan-install-dist-deps --with-develop && test-dist
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
linter-job:
name: lint
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester:5.42
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install deps and test
run: cpan-install-dist-deps --with-develop
- name: Install precious and omegasort
uses: oalders/install-ubi-action@v0.0.6
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
projects: |
houseabsolute/omegasort
houseabsolute/precious
- name: precious lint
run: |
if [ "${{ github.ref }}" = "refs/heads/master" ]; then
precious lint -q --all
else
git fetch origin master:refs/remotes/origin/master
precious lint -q --git-diff-from origin/${{ github.base_ref }}
fi
http-one-one-regression-job:
name: HTTP/1.1 Keepalive Regression Test - see GH \# 14
needs: build-job
Expand Down
30 changes: 15 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
/.ackrc
/blib/
.build
/cover_db
cpanfile.snapshot
/_eumm/
!/.gitignore
/local
/Makefile
/Makefile.old
/MANIFEST.bak
/.tidyall.d
/.vscode
/MANIFEST.SKIP.bak
/MANIFEST.bak
/MYMETA.json
/MYMETA.yml
/pm_to_blib
/Makefile
/Makefile.old
/README
*.sw*
/.tidyall.d
tidyall.ERR
/.vscode
/WWW-Mechanize-*/
/WWW-Mechanize-*.tar.gz
/_eumm/
/blib/
/cover_db
/local
/pm_to_blib
*.sw*
.build
cpanfile.snapshot
tidyall.ERR
!/.gitignore
25 changes: 0 additions & 25 deletions .perlimports.toml

This file was deleted.

3 changes: 3 additions & 0 deletions cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ on 'configure' => sub {
};

on 'develop' => sub {
requires "App::perlimports" => "0.000057";
requires "App::perlvars" => "0.000006";
requires "Code::TidyAll" => "0.71";
requires "Code::TidyAll::Plugin::SortLines::Naturally" => "0.000003";
requires "Code::TidyAll::Plugin::Test::Vars" => "0.04";
Expand All @@ -64,6 +66,7 @@ on 'develop' => sub {
requires "Perl::Critic" => "1.132";
requires "Perl::Tidy" => "20180220";
requires "Pod::Coverage::TrustPod" => "0";
requires "Pod::Tidy" => "0";
requires "Test::Code::TidyAll" => "0.50";
requires "Test::EOL" => "0";
requires "Test::Memory::Cycle" => "0";
Expand Down
Loading