Skip to content

Commit

Permalink
chore: introduce CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dqn committed Sep 14, 2020
1 parent 1b17d3a commit b12aba2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: build

on: [push]

jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
go: ["1.15"]
name: Go ${{ matrix.go }} build
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- run: go build
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# gonso

[![build status](https://github.com/dqn/gonso/workflows/build/badge.svg)](https://github.com/dqn/gonso/actions)

Nintendo Switch Online API wrapper written in Go.

## Installation
Expand Down

0 comments on commit b12aba2

Please sign in to comment.