Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: build

on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
workflow_dispatch:

jobs:
build-job:
name: Build Latest SQLite3
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester:latest
env:
DBI_DSN: dbi:ODBC:DRIVER=SQLite3
PERL_MM_USE_DEFAULT: 1
DBD_ODBC_UNICODE: 1
steps:
- uses: actions/checkout@v3
- run: apt-get update -y
- run: apt-get install -y unixodbc unixodbc-dev libsqliteodbc
- run: perl -V
- run: cpanm DBI Test::Output Test::Kwalitee
- run: perl Makefile.PL && make && make test
39 changes: 0 additions & 39 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion ODBC.pm
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ __END__
DBD::ODBC - ODBC Driver for DBI

=for html
<a href="https://travis-ci.org/perl5-dbi/DBD-ODBC"><img src="https://travis-ci.org/perl5-dbi/DBD-ODBC.svg?branch=master"></a>
<a href="https://github.com/perl5-dbi/DBD-ODBC/actions"><img src="https://github.com/perl5-dbi/DBD-ODBC/actions/workflows/action.yml/badge.svg"></a>
<a href="http://badge.fury.io/pl/DBD-ODBC"><img src="https://badge.fury.io/pl/DBD-ODBC.svg" alt="CPAN version" height="18"></a>

=head1 VERSION
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DBD::ODBC -- DBD module interfacing the ODBC databases.

[![Build Status](https://travis-ci.org/perl5-dbi/DBD-ODBC.svg?branch=master)](https://travis-ci.org/perl5-dbi/DBD-ODBC)
[![build](https://github.com/perl5-dbi/DBD-ODBC/actions/workflows/action.yml/badge.svg?branch=master)](https://github.com/perl5-dbi/DBD-ODBC/actions)
[![CPAN version](https://badge.fury.io/pl/DBD-ODBC.svg)](http://badge.fury.io/pl/DBD-ODBC)
[![CPANTS](http://cpants.cpanauthors.org/dist/DBD-ODBC.png)](http://cpants.cpanauthors.org/dist/DBD-ODBC)

Expand Down