Skip to content
Merged
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
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on:
pull_request: ~
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
container:
image: amaccis/php-libstemmer:2.0.0
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: composer install
- name: Run tests
run: vendor/bin/phpunit
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# php-stemmer

[![PHP Version](https://img.shields.io/badge/php-%5E7.4-blue.svg)](https://img.shields.io/badge/php-%5E7.4-blue.svg)
[![Build Status](https://travis-ci.org/amaccis/php-stemmer.svg?branch=master)](https://travis-ci.org/amaccis/php-stemmer)

![CI](https://github.com/amaccis/php-stemmer/workflows/CI/badge.svg)

## What is PHP Stemmer?
PHP Stemmer is a PHP interface to the stemming algorithms from the [Snowball project](https://snowballstem.org/), largely inspired by Richard Boulton's [PyStemmer](https://github.com/snowballstem/pystemmer).
Expand Down
File renamed without changes.