Skip to content

bump up version to 0.0.52 #63

bump up version to 0.0.52

bump up version to 0.0.52 #63

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
paths-ignore:
- "README.md"
- "_examples/**"
- "_assets/**"
pull_request:
branches:
- main
- master
paths-ignore:
- "README.md"
permissions:
contents: read
jobs:
test:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go: ["1.22"]
runs-on: ${{ matrix.os }}
steps:
- name: Set git to use LF
if: matrix.os == 'windows-latest'
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout
uses: actions/checkout@v4
- name: Setup go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
cache: false
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
args: --timeout=5m
- name: Run govulncheck
uses: golang/govulncheck-action@v1
with:
go-version-input: ${{ matrix.go }}
go-package: ./...
cache: false
- name: Run tests
run: |
git diff --cached --exit-code
go test ./... -v -cover -coverprofile=cover.Render
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: ./cover.Render