Skip to content

Commit e453cbc

Browse files
authored
update ci to run tests with newer versions of go (#33)
1 parent b894ee0 commit e453cbc

File tree

4 files changed

+28
-32
lines changed

4 files changed

+28
-32
lines changed

.github/workflows/go.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,22 @@ on:
88

99
jobs:
1010

11+
build_19:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
16+
- name: Set up Go
17+
uses: actions/setup-go@v3
18+
with:
19+
go-version: 1.19
20+
21+
- name: Build
22+
run: go build -v ./...
23+
24+
- name: Test
25+
run: go test -v ./...
26+
1127
build_18:
1228
runs-on: ubuntu-latest
1329
steps:

.travis.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
[![Last release](https://img.shields.io/github/v/release/jattento/go-iso8583?style=plastic)](https://github.com/jattento/go-iso8583/releases)
55

66

7-
| Version | Build |
8-
|---------|:-------------:|
9-
| Go 1.18 |[![Build Status](https://travis-ci.com/jattento/go-iso8583.svg?branch=master)](https://travis-ci.com/jattento/go-iso8583)|
10-
| Go 1.17 |[![Build Status](https://travis-ci.com/jattento/go-iso8583.svg?branch=master)](https://travis-ci.com/jattento/go-iso8583)|
11-
| Go 1.16 |[![Build Status](https://travis-ci.com/jattento/go-iso8583.svg?branch=master)](https://travis-ci.com/jattento/go-iso8583)|
12-
| Go 1.15 |[![Build Status](https://travis-ci.com/jattento/go-iso8583.svg?branch=master)](https://travis-ci.com/jattento/go-iso8583)|
13-
| Go 1.14 |[![Build Status](https://travis-ci.com/jattento/go-iso8583.svg?branch=master)](https://travis-ci.com/jattento/go-iso8583)|
14-
| Go 1.13 |[![Build Status](https://travis-ci.com/jattento/go-iso8583.svg?branch=master)](https://travis-ci.com/jattento/go-iso8583)|
7+
| Version | Build |
8+
|---------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------:|
9+
| 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) |
10+
| 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) |
11+
| 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) |
12+
| 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) |
13+
| 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) |
14+
| 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) |
15+
| 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) |
1516
# go-iso8583
1617

1718
<img align="right" width="200px" src="https://raw.githubusercontent.com/jattento/go-iso8583-logo/main/iso%20gopher.png">

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Changelog
22

3+
### 1.1.2 - 28/8/2020 - Jose Attento (jose.attento@gmail.com)
4+
- Modify CI files to include tests for newer versions of GO.
5+
36
### 1.1.1 - 28/8/2020 - Jose Attento (jose.attento@gmail.com)
47
- Add a default of 64 value for bitmaps length, the value is assumed if no length is indicated.
58

0 commit comments

Comments
 (0)