Skip to content

Commit 6f21cf9

Browse files
author
Rajat Goel
authored
Merge pull request #71 from rajatgoel/github-action-test
Switch tests to github actions
2 parents 4ff84ff + d98f0cf commit 6f21cf9

File tree

4 files changed

+22
-23
lines changed

4 files changed

+22
-23
lines changed

.github/workflows/test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
on: [push, pull_request]
2+
name: Test
3+
env:
4+
GO111MODULE: "on"
5+
jobs:
6+
test:
7+
strategy:
8+
matrix:
9+
go-version: [1.11.x]
10+
os: [ubuntu-latest, macos-latest, windows-latest]
11+
runs-on: ${{ matrix.os }}
12+
steps:
13+
- name: Install Go
14+
uses: actions/setup-go@v2
15+
with:
16+
go-version: ${{ matrix.go-version }}
17+
- name: Checkout code
18+
uses: actions/checkout@v2
19+
- name: Test
20+
run: go test ./...

.travis.yml

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dropbox SDK for Go [UNOFFICIAL] [![GoDoc](https://godoc.org/github.com/dropbox/dropbox-sdk-go-unofficial/dropbox?status.svg)](https://godoc.org/github.com/dropbox/dropbox-sdk-go-unofficial/dropbox) [![Build Status](https://travis-ci.org/dropbox/dropbox-sdk-go-unofficial.svg?branch=master)](https://travis-ci.org/dropbox/dropbox-sdk-go-unofficial) [![Go Report Card](https://goreportcard.com/badge/github.com/dropbox/dropbox-sdk-go-unofficial)](https://goreportcard.com/report/github.com/dropbox/dropbox-sdk-go-unofficial)
22

3-
An **UNOFFICIAL** Go SDK for integrating with the Dropbox API v2. Tested with Go 1.5+
3+
An **UNOFFICIAL** Go SDK for integrating with the Dropbox API v2. Tested with Go 1.11+
44

55
:warning: WARNING: This SDK is **NOT yet official**. What does this mean?
66

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/dropbox/dropbox-sdk-go-unofficial
22

3-
go 1.10
3+
go 1.11
44

55
require (
66
golang.org/x/net v0.0.0-20201224014010-6772e930b67b

0 commit comments

Comments
 (0)