Skip to content

GA Debug

GA Debug #2

Workflow file for this run

name: Funnel Use Workflow
on:
push:
branches:
- '**' # Triggers on all branches
pull_request:
branches:
- '**'
jobs:
build:
uses: ./.github/workflows/build.yml # use the callable tests job to run tests
use-funnel:
needs: build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Check out code
uses: actions/checkout@v2
- name: Cache Funnel binary
uses: actions/cache@v3
with:
path: funnel/
key: ${{ runner.os }}-funnel-bin-${{ hashFiles('**/go.sum') }}-${{ github.ref }}
restore-keys: |
${{ runner.os }}-funnel-bin-${{ github.ref }}
${{ runner.os }}-funnel-bin-
- name: Use Funnel binary
run: |
echo "Using cached Funnel binary"
chmod +x ./funnel
./funnel version