Skip to content

Commit

Permalink
Merge pull request #32 from DeNA/use/github_actions
Browse files Browse the repository at this point in the history
use Github Actions
  • Loading branch information
Hiromichi Ema authored Nov 19, 2019
2 parents 53275e9 + e2ae636 commit 30232e9
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 12 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/go112.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Go1.12
on: [push]
jobs:

build:
name: Build in Go1.12
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.12
uses: actions/setup-go@v1
with:
go-version: 1.12
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v1

- name: Test
run: go test -v -cover .
20 changes: 20 additions & 0 deletions .github/workflows/go113.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Go1.13
on: [push]
jobs:

build:
name: Build in Go1.13
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v1

- name: Test
run: go test -v -cover .
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# App Engine Logger

[![Build Status](https://travis-ci.org/DeNA/aelog.svg?branch=master)](https://travis-ci.org/DeNA/aelog)
[![Go Report Card](https://goreportcard.com/badge/github.com/DeNA/aelog)](https://goreportcard.com/report/github.com/DeNA/aelog)
[![GoDoc](https://godoc.org/github.com/DeNA/aelog?status.svg)](https://godoc.org/github.com/DeNA/aelog)

Expand Down

0 comments on commit 30232e9

Please sign in to comment.