Skip to content

Merge pull request #68 from etcd-io/dependabot/github_actions/golangc… #138

Merge pull request #68 from etcd-io/dependabot/github_actions/golangc…

Merge pull request #68 from etcd-io/dependabot/github_actions/golangc… #138

Workflow file for this run

---
name: tests
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
test:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.21.8
- uses: actions/checkout@v4
- name: tests
run: |
make verify
make test