Skip to content

Merge pull request #59 from etcd-io/dependabot/github_actions/actions… #109

Merge pull request #59 from etcd-io/dependabot/github_actions/actions…

Merge pull request #59 from etcd-io/dependabot/github_actions/actions… #109

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.20.10
- uses: actions/checkout@v4
- name: tests
run: |
make verify
make test