Skip to content

Commit 5726abc

Browse files
committed
Merge remote-tracking branch 'origin/master'
# Conflicts: # README.md
2 parents 0ebd12b + c25a96f commit 5726abc

File tree

3 files changed

+29
-28
lines changed

3 files changed

+29
-28
lines changed

.circleci/config.yml

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

.github/workflows/go.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Go
2+
on: [push]
3+
jobs:
4+
5+
test:
6+
name: Test
7+
runs-on: ubuntu-latest
8+
steps:
9+
10+
- name: Set up Go 1.12
11+
uses: actions/setup-go@v1
12+
with:
13+
go-version: 1.12
14+
id: go
15+
16+
- name: Check out code into the Go module directory
17+
uses: actions/checkout@v1
18+
19+
- name: Get dependencies
20+
run: |
21+
go get -v -t -d ./...
22+
if [ -f Gopkg.toml ]; then
23+
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
24+
dep ensure
25+
fi
26+
27+
- name: Test
28+
run: go test .

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# graphql-upload
22

3-
[![GitHub Actions status](https://github.com/jpascal/graphql-upload/workflows/Go/badge.svg)](https://github.com/jpascal/graphql-upload/actions)
3+
[![GitHub Actions status](https://github.com/jpascal/graphql-upload/workflows/Go/badge.svg)](https://circleci.com/gh/jpascal/graphql-upload)
44

55
Middleware and an [`Upload` scalar](#class-graphqlupload) to add support for [GraphQL multipart requests](https://github.com/jaydenseric/graphql-multipart-request-spec) (file uploads via queries and mutations) to various golang GraphQL servers.
66

0 commit comments

Comments
 (0)