Configure GitHub Actions.

This commit is contained in:
Naoki Kosaka 2020-05-10 14:06:26 +09:00
parent 81581db527
commit a4c58124dd
2 changed files with 30 additions and 23 deletions

View File

@ -1,28 +1,10 @@
name: Test and Build
on: [push]
name: Build
on:
push:
branches:
- master
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v1
with:
go-version: '1.13.x'
- name: Execute test and upload coverage
run: |
go version
go test -coverprofile=coverage.txt -covermode=atomic -p 1 . ./worker ./cli ./State
bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
REDIS_URL: redis://localhost:${{ job.services.redis.ports['6379'] }}
services:
redis:
image: redis
ports:
- 6379/tcp
build:
name: Build
runs-on: ubuntu-latest

25
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Test
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v1
with:
go-version: '1.13.x'
- name: Execute test and upload coverage
run: |
go version
go test -coverprofile=coverage.txt -covermode=atomic -p 1 . ./worker ./cli ./State
bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
REDIS_URL: redis://localhost:${{ job.services.redis.ports['6379'] }}
services:
redis:
image: redis
ports:
- 6379/tcp