Skip to content

Commit

Permalink
ci: Run t/ tests
Browse files Browse the repository at this point in the history
  • Loading branch information
perlpunk committed Aug 13, 2024
1 parent d8936a7 commit 0c2190a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: 'Test'

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester
steps:
- uses: actions/checkout@v4
- run: make test-t
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ update-deps:
tools/update-deps --cpanfile cpanfile

.PHONY: test
test: test-tidy test-critic test-yaml test-author
test: test-tidy test-critic test-yaml test-author test-t

.PHONY: test-tidy
test-tidy:
Expand All @@ -25,3 +25,7 @@ test-yaml:
.PHONY: test-author
test-author:
prove -l -r xt/

.PHONY: test-t
test-t:
prove -l -r t/

0 comments on commit 0c2190a

Please sign in to comment.