Skip to content
name: Integration Tests
run-name: Run Integration Test for commit ${{ github.sha }}
on:
workflow_dispatch: {}
push:
branches:
- ci/*
jobs:
ping-environment:
name: Ping the configured environment
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Setup tailscale
uses: tailscale/github-action@v2

Check failure on line 17 in .github/workflows/integration-tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/integration-tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
with:
oauth-client-id: ${{ SECRETS.CI_TS_OAUTH_CLIENT_ID }}
oauth-secret: ${{ SECRETS.CI_TS_OAUTH_SECRET }}
tags: tag:ci
- name: Ping stage
run: |
curl -X POST "${{ SECRETS.LL_STAGE_URL }}/game/v2/session/guest" -H "Content-Type: application/json" -d "{\"game_key\": \"dev_dc52acb52a8b49be81761e709f1df9fd\", \"game_version\": \"0.10.0.0\"}"