Skip to content

Implement proximity grouping for indexers based on block numbers and … #86

Implement proximity grouping for indexers based on block numbers and …

Implement proximity grouping for indexers based on block numbers and … #86

Workflow file for this run

name: Setup & Test
on:
workflow_dispatch:
push:
branches:
- "main"
jobs:
setup-env:
name: Setup Environment
runs-on: ubuntu-latest
outputs:
latest-tag: ${{ steps.latest-tag.outputs.latest-tag }}
steps:
- name: Get latest tag
id: latest-tag
run: echo "latest-tag=${{ github.ref == 'refs/heads/main' && 'dev-latest' || github.ref_name }}" >> "$GITHUB_OUTPUT"
test:
name: Test
uses: ./.github/workflows/test.yml
publish-test-results:
name: Publish test results
needs: test
uses: ./.github/workflows/publish-test-results.yml