Tiny comment update #15
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
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions | |
name: Basic Tests | |
on: | |
push: | |
# This workflow doesn't need to run on tags; to get that, specify only `branches` here: | |
branches: | |
- '**' | |
pull_request: | |
jobs: | |
tests: | |
# Uses the Perl that comes preinstalled on all GH Action runners | |
# https://github.com/actions/runner-images?tab=readme-ov-file#available-images | |
name: Default Perl on Ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: prove -l |