Skip to content

Add more logging to cvdr agents #93

Add more logging to cvdr agents

Add more logging to cvdr agents #93

Workflow file for this run

name: Check Formatting
on: [pull_request, push]
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675 # aka v2
- name: Install dependencies
uses: actions/setup-go@v3
with:
go-version: '1.19.0'
- run: go version
- name: Check format
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi