Skip to content

Remove some broken README images #5

Remove some broken README images

Remove some broken README images #5

Workflow file for this run

name: Analysis
on: [push, pull_request]
permissions:
contents: read
jobs:
static_analysis:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: WillAbides/setup-go-faster@v1
with:
go-version: 'stable'
- name: Install static analysis tools
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
go install golang.org/x/tools/cmd/goimports@latest
- name: Vet
run: go vet ./...
- name: Goimports
run: test -z "$(goimports -e -d . | tee /dev/stderr)"
- name: Staticcheck
run: staticcheck ./...