Skip to content

Commit

Permalink
replace travis with github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyper authored and hyperjiang committed Nov 21, 2022
1 parent 1091280 commit 2cbeda3
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 22 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: CI

on:
push:
branches: [ master, go1.18 ]
pull_request:
branches: [ master ]

jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
# Fail fast is disabled because there are Go version specific features and tests
# that should be able to fail independently.
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go: ['1.18', '1.19']

steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}

- name: Checkout code
uses: actions/checkout@v3

- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic
if: runner.os != 'Windows'

- name: Test Windows
run: go test -race
if: runner.os == 'Windows'

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
if: runner.os != 'Windows'

lint:
name: Lint
runs-on: ubuntu-latest
env:
GOFLAGS: -mod=readonly

steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18

- name: Checkout code
uses: actions/checkout@v3

- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.47.2
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# gin-skeleton

[![Build Status](https://travis-ci.org/hyperjiang/gin-skeleton.svg?branch=master)](https://travis-ci.org/hyperjiang/gin-skeleton)
[![CI](https://github.com/hyperjiang/gin-skeleton/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/hyperjiang/gin-skeleton/actions/workflows/ci.yml)
[![Go Report](https://goreportcard.com/badge/github.com/hyperjiang/gin-skeleton)](https://goreportcard.com/report/github.com/hyperjiang/gin-skeleton)
[![License](https://img.shields.io/github/license/hyperjiang/gin-skeleton.svg)](https://github.com/hyperjiang/gin-skeleton)

Expand Down

0 comments on commit 2cbeda3

Please sign in to comment.