Skip to content

Commit 343d18d

Browse files
authored
Merge pull request #2 from amaccis/github-actions
Replace Travis with GitHub Actions
2 parents 9461226 + 7353da3 commit 343d18d

File tree

4 files changed

+21
-15
lines changed

4 files changed

+21
-15
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
pull_request: ~
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
container:
13+
image: amaccis/php-libstemmer:2.0.0
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v2
17+
- name: Install dependencies
18+
run: composer install
19+
- name: Run tests
20+
run: vendor/bin/phpunit

.travis.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# php-stemmer
22

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

76
## What is PHP Stemmer?
87
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).
File renamed without changes.

0 commit comments

Comments
 (0)