updateChorus (#2954) #1351
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: Ping Servers | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
ping-servers: | |
name: Ping Servers | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout from GitHub | |
uses: actions/checkout@v4 | |
- name: Setup Python 3.x | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: Install Python dependencies | |
run: pip install -r .scripts/requirements.txt | |
- name: Validate Server Status | |
run: python .scripts/validate_status.py --servers_dir servers --inactive_file inactive.json |