mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-09 07:08:07 -04:00
28 lines
731 B
YAML
28 lines
731 B
YAML
name: build_windows
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
tags-ignore:
|
|
- '*'
|
|
pull_request:
|
|
|
|
jobs:
|
|
perl:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
# - name: Set up Perl
|
|
# run: |
|
|
# choco install strawberryperl
|
|
# echo "##[add-path]C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin"
|
|
- name: perl -V
|
|
run: perl -V
|
|
- name: Install dependencies with develop
|
|
run: curl -sL https://git.io/cpm | perl - install -g --with-recommends --with-test --with-configure --with-develop --show-build-log-on-failure
|
|
- name: Run Makefile.PL
|
|
run: perl Makefile.PL
|
|
- name: Run tests
|
|
run: gmake test
|