fix test and change function name #14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |