This repository was archived by the owner on Aug 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +44
-13
lines changed Expand file tree Collapse file tree 3 files changed +44
-13
lines changed Original file line number Diff line number Diff line change
1
+ name : build
2
+
3
+ on :
4
+ push :
5
+ paths-ignore :
6
+ - ' **.md'
7
+ pull_request :
8
+ paths-ignore :
9
+ - ' **.md'
10
+
11
+ jobs :
12
+ test :
13
+
14
+ runs-on : ${{ matrix.os }}
15
+ strategy :
16
+ fail-fast : false
17
+ matrix :
18
+ os : [ubuntu-latest, macos-latest]
19
+ go : [ '1.14', '1.15' ]
20
+
21
+ steps :
22
+
23
+ # step 1: set up go
24
+ - name : Set up GO
25
+ uses : actions/setup-go@v1
26
+ with :
27
+ go-version : ${{ matrix.go }}
28
+
29
+ # step 2: checkout repository code
30
+ - name : Checkout code into workspace directory
31
+ uses : actions/checkout@v2
32
+
33
+ # step 3: install dependencies
34
+ - name : Install all Go dependencies
35
+ run : |
36
+ go get github.com/mnovozhylov/oauth &&
37
+ go get github.com/stretchr/testify/assert &&
38
+ go get github.com/upwork/golang-upwork/api
39
+
40
+ # step 4: run test
41
+ - name : go test
42
+ run : |
43
+ go test -v ./...
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ GO bindings for Upwork API (OAuth1)
3
3
4
4
[ ![ License] ( https://img.shields.io/github/license/upwork/golang-upwork )] ( http://www.apache.org/licenses/LICENSE-2.0.html )
5
5
[ ![ GitHub release] ( https://img.shields.io/github/release/upwork/golang-upwork.svg )] ( https://github.com/upwork/golang-upwork/releases )
6
- [ ![ Build status] ( https://travis-ci.org /upwork/golang-upwork.svg )] ( http ://travis-ci.org /upwork/golang-upwork)
6
+ [ ![ Build status] ( https://github.com /upwork/golang-upwork/workflows/build/badge .svg )] ( https ://github.com /upwork/golang-upwork-oauth2/actions )
7
7
8
8
# Introduction
9
9
This project provides a set of resources of Upwork API from http://developers.upwork.com
You can’t perform that action at this time.
0 commit comments