Skip to content

feat: support excluding packages from upgrade --all #117

feat: support excluding packages from upgrade --all

feat: support excluding packages from upgrade --all #117

Workflow file for this run

name: test
on:
push:
branches:
- main
tags-ignore:
- v*
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.22]
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Test and calculate coverage
run: go test -v ./... --coverprofile coverage.out
- name: Read the coverage
run: go tool cover --func coverage.out