Add function to help test Git for Windows on msys #24
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
on: [push, pull_request] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: sudo apt install perl-doc | |
- name: Make sure README.pod is up to date | |
run: perldoc -u git-autofixup >README.pod && git diff --exit-code | |
- name: Run tests | |
run: perl Makefile.PL && make test |