Skip to content

Commit c813cdb

Browse files
committed
Switch from Travis-CI to GitHub Actions
1 parent bfff5fc commit c813cdb

File tree

3 files changed

+22
-8
lines changed

3 files changed

+22
-8
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+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
build:
11+
name: Build
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
os: [ubuntu-latest, macos-latest, windows-latest]
16+
runs-on: ${{ matrix.os }}
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Make
20+
run: make

.travis.yml

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

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
# UTF8 Validator (C edition)
22

3-
This is a more basic but faster version of [UTF8 Validator](https://github.com/digital-preservation/utf8-validator). The C edition, uses the [fastvalidate-utf-8](https://github.com/lemire/fastvalidate-utf-8) library from [Daniel Lemire](https://github.com/lemire). The C edition only returns a pass or fail result. It does not provide information about the position at which validation fails or allow to continue validating further after the first error.
3+
This is a more basic but much faster version of [UTF8 Validator](https://github.com/digital-preservation/utf8-validator). The C edition, uses the [fastvalidate-utf-8](https://github.com/lemire/fastvalidate-utf-8) library from [Daniel Lemire](https://github.com/lemire). The C edition only returns a pass or fail result. It does not provide information about the position at which validation fails or allow to continue validating further after the first error.
44

55
A UTF-8 Validation Tool which may be used as a command line tool, if you are looking for a C library to use with your own program see [fastvalidate-utf-8](https://github.com/lemire/fastvalidate-utf-8).
66

77
Released under the [Apache 2.0 Licence](https://opensource.org/licenses/Apache-2.0).
88

9-
[![Build Status](https://travis-ci.org/adametter/utf8-validator-c.png?branch=master)](https://travis-ci.org/adamretter/utf8-validator-c)
10-
9+
[![CI](https://github.com/adamretter/utf8-validator-c/workflows/CI/badge.svg)](https://github.com/adamretter/utf8-validator-c/actions?query=workflow%3ACI)
1110

1211
## Use from the Command Line
1312
You can [build from the source code](#building-from-source-code). You can then run `utf8validate` (Linux/Mac/Unix).

0 commit comments

Comments
 (0)