Skip to content

feat(LeetCode #14): add Longest Common Prefix solution #1

feat(LeetCode #14): add Longest Common Prefix solution

feat(LeetCode #14): add Longest Common Prefix solution #1

Workflow file for this run

name: Go Test
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.21'
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test ./...