Skip to content

Fix minor typo in README.md #10

Fix minor typo in README.md

Fix minor typo in README.md #10

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.20.3
- name: Format
run: |
make format
git diff --exit-code
- name: Test
run: make test
- name: Integration Test
run: make integration