Skip to content

Commit

Permalink
Replace TravisCI with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nickng committed Sep 15, 2021
1 parent 1aab885 commit 8943063
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.16.x, 1.17.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test ./...
3 changes: 0 additions & 3 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,4 +1,4 @@
# bibtex [![Build Status](https://travis-ci.org/nickng/bibtex.svg?branch=master)](https://travis-ci.org/nickng/bibtex) [![GoDoc](https://godoc.org/github.com/nickng/bibtex?status.svg)](http://godoc.org/github.com/nickng/bibtex)
# bibtex ![Build Status](https://github.com/nickng/bibtex/actions/workflows/test.yml/badge.svg) [![Go Reference](https://pkg.go.dev/badge/github.com/nickng/bibtex.svg)](https://pkg.go.dev/github.com/nickng/bibtex)

## `nickng/bibtex` is a bibtex parser and library for Go.

Expand Down

0 comments on commit 8943063

Please sign in to comment.