Skip to content

chore(deps): update actions/setup-go action to v5 #490

chore(deps): update actions/setup-go action to v5

chore(deps): update actions/setup-go action to v5 #490

Workflow file for this run

name: Test
on:
pull_request:
branches: [ main, develop ]
types: [opened, synchronize, reopened]
push:
branches: [ main, develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ^1.19
cache: true
- name: Run Go Tests
run: go test -coverprofile=coverage.out ./...