Skip to content

Commit 147fcdb

Browse files
committed
switch to workflows
1 parent fe9b2a4 commit 147fcdb

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

.github/workflows/go.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: build
2+
on: [push]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v1
8+
- uses: actions/setup-go@v1
9+
with:
10+
go-version: 1.x
11+
- run: go test -v ./...

.travis.yml

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://travis-ci.org/dim13/bit.svg?branch=master)](https://travis-ci.org/dim13/bit)
2-
[![GoDoc](https://godoc.org/github.com/dim13/bit?status.svg)](https://godoc.org/github.com/dim13/bit)
3-
41
# variable-lenght bitfield
2+
3+
[![GoDoc](https://godoc.org/github.com/dim13/bit?status.svg)](https://godoc.org/github.com/dim13/bit)
4+
[![Build](https://github.com/dim13/bit/workflows/build/badge.svg)](https://github.com/dim13/bit/actions)

0 commit comments

Comments
 (0)