Skip to content

Commit

Permalink
Merge pull request #39 from google/actions
Browse files Browse the repository at this point in the history
Switch to github actions
  • Loading branch information
gauntface committed Aug 30, 2021
2 parents 479b5e8 + b5a6bf7 commit ac7cc57
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,14 @@
on: [push, pull_request]
name: Test
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.11.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...
1 change: 0 additions & 1 deletion .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions README.md
@@ -1,7 +1,5 @@
# BTree implementation for Go

![Travis CI Build Status](https://api.travis-ci.org/google/btree.svg?branch=master)

This package provides an in-memory B-Tree implementation for Go, useful as
an ordered, mutable data structure.

Expand Down

0 comments on commit ac7cc57

Please sign in to comment.