Skip to content

Commit

Permalink
update ci to run tests with newer versions of go (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
jattento committed Feb 23, 2023
1 parent b894ee0 commit e453cbc
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 32 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,22 @@ on:

jobs:

build_19:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

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

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...

build_18:
runs-on: ubuntu-latest
steps:
Expand Down
24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
[![Last release](https://img.shields.io/github/v/release/jattento/go-iso8583?style=plastic)](https://github.com/jattento/go-iso8583/releases)


| Version | Build |
|---------|:-------------:|
| Go 1.18 |[![Build Status](https://travis-ci.com/jattento/go-iso8583.svg?branch=master)](https://travis-ci.com/jattento/go-iso8583)|
| Go 1.17 |[![Build Status](https://travis-ci.com/jattento/go-iso8583.svg?branch=master)](https://travis-ci.com/jattento/go-iso8583)|
| Go 1.16 |[![Build Status](https://travis-ci.com/jattento/go-iso8583.svg?branch=master)](https://travis-ci.com/jattento/go-iso8583)|
| Go 1.15 |[![Build Status](https://travis-ci.com/jattento/go-iso8583.svg?branch=master)](https://travis-ci.com/jattento/go-iso8583)|
| Go 1.14 |[![Build Status](https://travis-ci.com/jattento/go-iso8583.svg?branch=master)](https://travis-ci.com/jattento/go-iso8583)|
| Go 1.13 |[![Build Status](https://travis-ci.com/jattento/go-iso8583.svg?branch=master)](https://travis-ci.com/jattento/go-iso8583)|
| Version | Build |
|---------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------:|
| Go 1.19 | [![Build Status](https://github.com/jattento/go-iso8583/actions/workflows/go.yml/badge.svg)](https://github.com/jattento/go-iso8583/actions/workflows/go.yml) |
| Go 1.18 | [![Build Status](https://github.com/jattento/go-iso8583/actions/workflows/go.yml/badge.svg)](https://github.com/jattento/go-iso8583/actions/workflows/go.yml) |
| Go 1.17 | [![Build Status](https://github.com/jattento/go-iso8583/actions/workflows/go.yml/badge.svg)](https://github.com/jattento/go-iso8583/actions/workflows/go.yml) |
| Go 1.16 | [![Build Status](https://github.com/jattento/go-iso8583/actions/workflows/go.yml/badge.svg)](https://github.com/jattento/go-iso8583/actions/workflows/go.yml) |
| Go 1.15 | [![Build Status](https://github.com/jattento/go-iso8583/actions/workflows/go.yml/badge.svg)](https://github.com/jattento/go-iso8583/actions/workflows/go.yml) |
| Go 1.14 | [![Build Status](https://github.com/jattento/go-iso8583/actions/workflows/go.yml/badge.svg)](https://github.com/jattento/go-iso8583/actions/workflows/go.yml) |
| Go 1.13 | [![Build Status](https://github.com/jattento/go-iso8583/actions/workflows/go.yml/badge.svg)](https://github.com/jattento/go-iso8583/actions/workflows/go.yml) |
# go-iso8583

<img align="right" width="200px" src="https://raw.githubusercontent.com/jattento/go-iso8583-logo/main/iso%20gopher.png">
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Changelog

### 1.1.2 - 28/8/2020 - Jose Attento (jose.attento@gmail.com)
- Modify CI files to include tests for newer versions of GO.

### 1.1.1 - 28/8/2020 - Jose Attento (jose.attento@gmail.com)
- Add a default of 64 value for bitmaps length, the value is assumed if no length is indicated.

Expand Down

0 comments on commit e453cbc

Please sign in to comment.