Skip to content

Revert "run ci"

Revert "run ci" #13

Workflow file for this run

name: search_api
on:
push:
paths:
- "search_api/**"
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./search_api
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.21.x"
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test