chore(deps): update golang patch version to v1.23.3 #940
Workflow file for this run
This file contains 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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
name: Load Tests | |
jobs: | |
load_tests: | |
if: ${{ ! contains(github.event.pull_request.labels.*.name, 'ci/skip-load-test') }} | |
name: Load Tests | |
runs-on: ubuntu-22.04 # Read the comment below why this is not set to `latest`. | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" | |
- name: Installing dependencies | |
run: | | |
sudo wget -O /usr/local/bin/skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64 | |
sudo chmod +x /usr/local/bin/skaffold | |
- name: Setup Minikube | |
uses: manusa/[email protected] | |
with: | |
minikube version: v1.30.1 | |
kubernetes version: v1.25.6 | |
driver: docker | |
github token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run load tests | |
env: | |
NEWRELIC_LICENSE: ${{ secrets.NEWRELIC_LICENSE }} | |
run : | | |
source ./load-test/load_test.sh | |
runLoadTest |