chore: bump version #12
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
name: Dirty Script Test | |
on: | |
push: | |
paths: | |
- '**.py' | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Dirty Script Test | |
runs-on: ubuntu-latest | |
environment: discord_live_testing | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11.0' | |
- name: Install Script Dependencies | |
run: pip install -r requirements.txt | |
- name: Disable File Exports | |
run: | | |
sudo chmod +x .github/change_config_settings.sh | |
sudo .github/change_config_settings.sh export_results false | |
sudo .github/change_config_settings.sh scrape_channel_overwrite_info true | |
- name: Test Script Runs with CLI Args | |
env: | |
DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }} | |
DISCORD_SERVER_ID: ${{ secrets.DISCORD_SERVER_ID }} | |
timeout-minutes: 2 | |
run: | | |
python3 main.py "$DISCORD_TOKEN" "$DISCORD_SERVER_ID" true |