Skip to content

chore(deps): bump github.com/daveshanley/vacuum from 0.5.0 to 0.9.9 #4070

chore(deps): bump github.com/daveshanley/vacuum from 0.5.0 to 0.9.9

chore(deps): bump github.com/daveshanley/vacuum from 0.5.0 to 0.9.9 #4070

Workflow file for this run

name: CI Test
concurrency:
# Run only for most recent commit in PRs but for all tags and commits on main
# Ref: https://docs.github.com/en/actions/using-jobs/using-concurrency
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }}
cancel-in-progress: true
on:
push:
branches:
- main
pull_request: {}
jobs:
test:
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: '^1.20'
- name: Setup golangci-lint
uses: golangci/[email protected]
- name: Run tests with Coverage
run: make coverage
- name: Upload Code Coverage
uses: codecov/codecov-action@v3
with:
name: codecov-deck
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
- name: Build
run: make build