mirror of
https://github.com/shopspring/decimal.git
synced 2024-11-22 12:30:49 +01:00
ed8f76e893
* Drop support for Go versions older than 1.10 * Remove 1.18 from test suite
21 lines
432 B
YAML
21 lines
432 B
YAML
name: ci
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
jobs:
|
|
ci-job:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
go: [ '1.10.x', '1.19', '1.20', '1.21', '1.22', '1.x' ]
|
|
name: Go ${{ matrix.go }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Use go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ matrix.go }}
|
|
- run: go build .
|
|
- run: go test -v
|