Testing with AppVeyor
If you ever wanted to test your CPAN modules on Windows systems without having an own Windows system setup, then you should take a look at AppVeyor. Basically it's something like travis-ci, but just running on Windows. Configuration happens in a YAML file named appveyor.yml.
A sample appveyor.yml file for testing CPAN distributions may look like this:
branches:
except:
- /travis/
skip_tags: true
cache:
- C:\st…
I blog about Perl.