Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
39 changes: 39 additions & 0 deletions .github/workflows/ws-handshake-smoke.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: WebSocket Handshake Smoke Test

on:
workflow_dispatch:
push:
branches:
- main
- Development
pull_request:
paths:
- 'FDK/**'
- '.github/workflows/ws-handshake-smoke.yml'

jobs:
handshake:
runs-on: ubuntu-latest
environment: production
env:
WS_FQDN: ${{ secrets.WS_FQDN }}
WS_LOGIN: ${{ secrets.WS_LOGIN }}
WS_API_KEY: ${{ secrets.WS_API_KEY }}
WS_SITE: ${{ secrets.WS_SITE }}
WS_URL: ${{ secrets.WS_URL }}
steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'

- name: Install dependencies
working-directory: FDK
run: flutter pub get

- name: Run WebSocket handshake smoke test
working-directory: FDK
run: dart run tool/ws_auth_smoke.dart
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ migrate_working_dir/
flutter_export_environment.sh
**/generated_plugin_registrant.dart
linked_packages/
build_logs/
coverage/

# Symbolication related
app.*.symbols
Expand Down Expand Up @@ -92,4 +94,4 @@ push-event.json
# Fastlane sensitive files
android/fastlane/play_store_key.json
ios/fastlane/AuthKey_*.p8
**/.env
**/.env
Loading
Loading