action for testing netdisco

This commit is contained in:
Oliver Gorwits
2021-08-15 20:44:33 +01:00
parent c9885ab1d8
commit 4495bc17a9

18
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: Test Netdisco
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Get the Tag
id: get_tag
run: echo ::set-output name=TAGVALUE::${GITHUB_REF#refs/tags/}
- uses: shogo82148/actions-setup-perl@master
with:
perl-version: 'latest'
- run: 'cpanm --installdeps .'
- run: 'prove -v xt/*.t'