Skip to content

chore: add dependabot automerge action #132

chore: add dependabot automerge action

chore: add dependabot automerge action #132

Workflow file for this run

name: Test Suite
on: pull_request
jobs:
go-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Configure git
run: |
git config --global user.name "$GITHUB_ACTOR"
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Set up go
uses: actions/setup-go@v4
with:
go-version: stable
- name: Run tests
run: go test -v .