Skip to content

Migrate CI/CD from Travis CI to GitHub Actions#46

Merged
rvosa merged 7 commits intomasterfrom
copilot/migrate-ci-cd-to-github
Dec 11, 2025
Merged

Migrate CI/CD from Travis CI to GitHub Actions#46
rvosa merged 7 commits intomasterfrom
copilot/migrate-ci-cd-to-github

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Dec 11, 2025

Travis CI is deprecated for open source projects. This migrates the CI pipeline to GitHub Actions with updated Perl version support.

Changes

  • Created .github/workflows/ci.yml: GitHub Actions workflow with matrix testing across the 5 most recent Perl versions (5.40, 5.38, 5.36, 5.34, 5.32), identical dependency installation via cpanm, and standard build/test cycle
  • Updated README.md: Replaced Travis badge with GitHub Actions badge
  • Removed .travis.yml: Old configuration no longer needed
  • Security: Added explicit contents: read permissions for GITHUB_TOKEN

Workflow Configuration

permissions:
  contents: read

jobs:
  test:
    strategy:
      matrix:
        perl-version: ['5.40', '5.38', '5.36', '5.34', '5.32']

Triggers on pushes and PRs to master branch. Uses shogo82148/actions-setup-perl@v1 for Perl version management.

Original prompt

Migrate the CI/CD from Travis to Github workflows


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Copilot AI and others added 5 commits December 11, 2025 10:08
Co-authored-by: rvosa <106490+rvosa@users.noreply.github.com>
Co-authored-by: rvosa <106490+rvosa@users.noreply.github.com>
Co-authored-by: rvosa <106490+rvosa@users.noreply.github.com>
Co-authored-by: rvosa <106490+rvosa@users.noreply.github.com>
Co-authored-by: rvosa <106490+rvosa@users.noreply.github.com>
Copilot AI changed the title [WIP] Migrate CI/CD from Travis to GitHub workflows Migrate CI/CD from Travis CI to GitHub Actions Dec 11, 2025
Copilot AI requested a review from rvosa December 11, 2025 10:15
@rvosa
Copy link
Copy Markdown
Owner

rvosa commented Dec 11, 2025

@copilot the tests were failing, probably because they assume a set of old perl versions. Update this to the 5 most recent major versions counting backward from 5.42

Co-authored-by: rvosa <106490+rvosa@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Dec 11, 2025

@copilot the tests were failing, probably because they assume a set of old perl versions. Update this to the 5 most recent major versions counting backward from 5.42

Updated the CI workflow to use the 5 most recent Perl versions: 5.40, 5.38, 5.36, 5.34, and 5.32. Commit: 1dc2c3d

@rvosa rvosa marked this pull request as ready for review December 11, 2025 11:27
@rvosa rvosa merged commit 0886918 into master Dec 11, 2025
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants