Skip to content

Commit

Permalink
Migrate from Travis CI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaechtold committed Dec 31, 2023
1 parent 64c421b commit bfa70f8
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 14 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/passbook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Passbook

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements_test.txt
- name: Test with pytest
run: |
py.test
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Passbook

[![Build Status](https://travis-ci.org/devartis/passbook.svg?branch=master)](https://travis-ci.org/devartis/passbook)
[![Build Status](https://github.com/devartis/passbook/actions/workflows/passbook.yml/badge.svg)](https://github.com/devartis/passbook/actions)

Python library to create Apple Wallet (.pkpass) files (Apple Wallet
has previously been known as Passbook in iOS 6 to iOS 8).
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# GitHub Actions requires a file "requirements.txt" or "pyproject.toml".

0 comments on commit bfa70f8

Please sign in to comment.