Skip to content

Bump the github-actions-pins group across 1 directory with 4 updates #310

Bump the github-actions-pins group across 1 directory with 4 updates

Bump the github-actions-pins group across 1 directory with 4 updates #310

Workflow file for this run

name: E2E Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
ENABLE_E2E: ${{ secrets.ENABLE_E2E }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
if: ${{ env.ENABLE_E2E == 'true' }}
- name: Set up Go
if: ${{ env.ENABLE_E2E == 'true' }}
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
with:
go-version: 1.26
cache: true
- name: CLI E2E
if: ${{ env.ENABLE_E2E == 'true' }}
env:
RENDER_EMAIL: ${{ secrets.RENDER_EMAIL }}
RENDER_PASSWORD: ${{ secrets.RENDER_PASSWORD }}
RENDER_WORKSPACE: ${{ secrets.RENDER_WORKSPACE }}
run: go test -v ./e2e/...