Skip to content

Commit

Permalink
Migrate to Github Actions (#245)
Browse files Browse the repository at this point in the history
* Migrate to Github Actions
* Remove architecture param
* Remove Travis config, update readme
  • Loading branch information
mwoss committed Apr 18, 2022
1 parent fa3b22f commit f55dd56
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: decimal-ci
on: [push]
jobs:
ci-job:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.7.x', '1.15', '1.16', '1.17', '1.x' ]
name: Go ${{ matrix.go }}
steps:
- uses: actions/checkout@v2
- name: Use go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- run: go build .
- run: go test -v
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# decimal

[![Build Status](https://app.travis-ci.com/shopspring/decimal.svg?branch=master)](https://app.travis-ci.com/shopspring/decimal) [![GoDoc](https://godoc.org/github.com/shopspring/decimal?status.svg)](https://godoc.org/github.com/shopspring/decimal) [![Go Report Card](https://goreportcard.com/badge/github.com/shopspring/decimal)](https://goreportcard.com/report/github.com/shopspring/decimal)
[![Github Actions](https://github.com/shopspring/decimal/actions/workflows/ci.yml/badge.svg)](https://github.com/shopspring/decimal/actions/workflows/ci.yml)
[![GoDoc](https://godoc.org/github.com/shopspring/decimal?status.svg)](https://godoc.org/github.com/shopspring/decimal)
[![Go Report Card](https://goreportcard.com/badge/github.com/shopspring/decimal)](https://goreportcard.com/report/github.com/shopspring/decimal)

Arbitrary-precision fixed-point decimal numbers in go.

Expand Down

0 comments on commit f55dd56

Please sign in to comment.