Skip to content

Commit 736613b

Browse files
committed
chore: test against supported Go versions
1 parent 5e5d095 commit 736613b

3 files changed

Lines changed: 18 additions & 23 deletions

File tree

.github/workflows/go.yml

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

.github/workflows/test.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
version: [ '1.14', '1.15' ]
11+
name: Go ${{ matrix.version }}
12+
steps:
13+
- uses: actions/setup-go@v2
14+
with:
15+
go-version: ${{ matrix.version }}
16+
- uses: actions/checkout@v2
17+
- run: ./test.sh

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![CI](https://github.com/cloudfoundry/jsonry/workflows/Go/badge.svg?branch=main)](https://github.com/cloudfoundry/jsonry/actions?query=workflow%3AGo)
1+
[![test](https://github.com/cloudfoundry/jsonry/workflows/test/badge.svg?branch=main)](https://github.com/cloudfoundry/jsonry/actions?query=workflow%3Atest+branch%3Amain)
22
[![go.dev reference](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=flat-square)](https://pkg.go.dev/code.cloudfoundry.org/jsonry?tab=doc)
33

44
# JSONry

0 commit comments

Comments
 (0)