Skip to content

fix(deps): update all patch and minor #1582

fix(deps): update all patch and minor

fix(deps): update all patch and minor #1582

Workflow file for this run

---
name: test
on:
push:
branches:
- main
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Install Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with:
go-version: '1.26'
- name: Lint
if: ${{ matrix.os == 'ubuntu-latest' }}
run: make lint
- name: Test
run: make test
- name: Publish coverage to coveralls.io
uses: shogo82148/actions-goveralls@9606dbc5ac5cf888a0e9ef901515c3cd516a2790 # v1
if: ${{ matrix.os == 'ubuntu-latest' }}
with:
path-to-profile: coverage.out
- name: Build
run: go build ./cmd/gitlab-ci-pipelines-exporter