Skip to content

build(deps): bump codecov/codecov-action from 3 to 4 #31

build(deps): bump codecov/codecov-action from 3 to 4

build(deps): bump codecov/codecov-action from 3 to 4 #31

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
ci:
name: Static analysis and testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: false
- name: Check that all packages are compiling
run: make build
- name: Run all test
run: make test
- name: Installing tools
run: make tools
- name: Run all checks
run: make check
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4