Skip to content

add a file suffix option #305

add a file suffix option

add a file suffix option #305

Workflow file for this run

name: build and test
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- "1.20"
- "1.21"
name: run tests with go version ${{ matrix.go }}
steps:
- name: install go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: checkout code
uses: actions/checkout@v4
- name: Build
run: make build
- name: Test
if: (matrix.go == '1.21')
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
run: |
make cover
if [[ -n "$COVERALLS_TOKEN" ]]; then
make coveralls
fi
- name: Upload coverage
if: (matrix.go == '1.21')
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage.*
- name: Assert no changes
run: make assert-no-changes