Skip to content

βœ… tests for queries - bypass indices already cached with the same date #4

βœ… tests for queries - bypass indices already cached with the same date

βœ… tests for queries - bypass indices already cached with the same date #4

Workflow file for this run

name: No go-ray present
on:
push:
paths:
- go.mod
pull_request:
paths:
- go.mod
jobs:
no-ray:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check for go-ray in go.mod
run: |
if grep -q "github.com/octoper/go-ray" go.mod; then
echo "Error: github.com/octoper/go-ray found in go.mod"
exit 1
else
echo "Success: github.com/octoper/go-ray not found in go.mod"
fi