Skip to content

Bump miniscruff/changie-action from 1.0.1 to 2.0.0 #120

Bump miniscruff/changie-action from 1.0.1 to 2.0.0

Bump miniscruff/changie-action from 1.0.1 to 2.0.0 #120

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
strategy:
matrix:
go-version: [ 1.18.x, 1.19.x ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: ${{ matrix.go-version }}
- name: Format
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi
if: matrix.os == 'ubuntu-latest'
- name: Build
run: go build -v ./...
- name: Test
run: go test -race ./...