Skip to content

Add e2e tests

Add e2e tests #128

Workflow file for this run

name: Test
on:
push:
branches: ["main"]
pull_request:
types: ["opened", "synchronize", "reopened"]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Verify
run: "make verify"
go_test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Run tests
run: "make test"