fix(deps): update module github.com/fatih/color to v1.16.0 #491
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [push, pull_request] | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
go: ["^1.18.0"] | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
name: Go ${{ matrix.go }} in ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Environment | |
run: | | |
go version | |
go env | |
- name: Format | |
run: | | |
make format-check | |
- name: Test | |
run: | | |
make test | |
go mod tidy | |
git checkout ./ | |
- name: Build | |
uses: goreleaser/goreleaser-action@v3 | |
with: | |
version: latest | |
args: release --rm-dist --skip-publish --skip-validate | |
release: | |
name: Release to Github | |
if: startsWith(github.ref, 'refs/tags/') && github.repository == 'axetroy/dvm' | |
needs: [ci] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: axetroy/setup-whatchanged@v1 | |
with: | |
version: v0.5.7 | |
- name: Generate changelog | |
run: | | |
whatchanged --output=release.md | |
cat release.md | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: "^1.18.0" | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v3 | |
with: | |
version: latest | |
args: release --rm-dist --release-notes=./release.md --skip-validate | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |