Skip to content

ci: implement action dependency graph #42

ci: implement action dependency graph

ci: implement action dependency graph #42

Workflow file for this run

name: lint
on:
push:
paths:
- '**'
- '!README.md'
- '!**/.gitignore'
- '!**/Dockerfile'
- '!**/LICENSE'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.20'
- name: Lint Go Code
run: go vet ./...