We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b0e813c + ef1264a commit 0a156c8Copy full SHA for 0a156c8
2 files changed
.github/workflows/build.yml
@@ -21,6 +21,18 @@ jobs:
21
- name: Run tests
22
run: prove -lr -j4 t
23
24
+ sqlite-win:
25
+ runs-on: windows-latest
26
+
27
+ steps:
28
+ - uses: actions/checkout@v1
29
+ - name: perl -V
30
+ run: perl -V
31
+ - name: Install dependencies
32
+ run: curl -sL https://git.io/cpm | perl - install -g --with-recommends --with-test --with-configure --show-build-log-on-failure --feature=test_sqlite
33
+ - name: Run tests
34
+ run: prove -lr -j4 t
35
36
mysql:
37
runs-on: ubuntu-latest
38
t/60-fork.t
@@ -7,6 +7,8 @@ use Test::More;
7
use DodTestUtil;
8
9
BEGIN {
10
+ plan skip_all => 'Not for Win32' if $^O eq 'MSWin32';
11
12
my @requires = qw(
13
Parallel::ForkManager
14
Test::SharedFork
0 commit comments