Skip to content

Minor updates to README.md #4

Minor updates to README.md

Minor updates to README.md #4

Workflow file for this run

name: CI
on:
push:
branches: [main, go-rewrite]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.25"
- name: Format check
run: |
go fmt ./...
git diff --exit-code
- name: Vet
run: go vet ./...
- name: Test
run: go test ./...
- name: Build
run: go build -o omr .