Skip to content

fix test and change function name #14

fix test and change function name

fix test and change function name #14

Workflow file for this run

name: ARP E2E tests
on:
push:
branches: [ "master" ]
paths-ignore:
- "**.md"
pull_request:
branches: [ "master" ]
paths-ignore:
- "**.md"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.24"
- name: Download dependencies
run: go mod tidy
- name: Install Ginkgo
run: go install github.com/onsi/ginkgo/v2/ginkgo@latest
- name: Add Go bin to PATH
run: echo "${{ github.workspace }}/go/bin" >> $GITHUB_PATH
- name: Run tests
run: make test-e2e