Skip to content

feat(deps): bump github.com/purpleclay/gitz from 0.8.1 to 0.9.0 #757

feat(deps): bump github.com/purpleclay/gitz from 0.8.1 to 0.9.0

feat(deps): bump github.com/purpleclay/gitz from 0.8.1 to 0.9.0 #757

Workflow file for this run

name: ci
on:
push:
branches:
- main
paths:
- "**/*.go"
- "*.go"
- "go.mod"
- "go.sum"
pull_request:
paths:
- "**/*.go"
- "*.go"
- "go.mod"
- "go.sum"
jobs:
ci:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set Git Line Endings
run: |
git config --global core.autocrlf false
git config --global core.eol lf
if: matrix.os == 'windows-latest'
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.22.3"
cache: true
- name: Install Task
uses: arduino/setup-task@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Test
run: task test
- name: Build
run: task build
- name: Install golangci-lint
if: matrix.os == 'ubuntu-latest'
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
- name: Lint Code
if: matrix.os == 'ubuntu-latest'
run: task lint
- name: Code Coverage
if: matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v4