filters but no filterRadius #10
This file contains hidden or 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: rescue_groups_api_patch | |
| on: | |
| push: | |
| branches: [ rescue_groups_api_patch ] | |
| workflow_dispatch: | |
| jobs: | |
| debug-rescue-groups: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: pip install --break-system-packages -r requirements.txt | |
| - name: Debug the Rescue Group API | |
| env: | |
| ACCESS_KEY: ${{ secrets.CUTEPETSBOSTON_RESCUEGROUPS_API_KEY }} | |
| CUTEPETSBOSTON_RESCUEGROUPS_API_KEY: ${{ secrets.CUTEPETSBOSTON_RESCUEGROUPS_API_KEY }} | |
| BLUESKY_TEST_HANDLE: ${{ secrets.BLUESKY_TEST_HANDLE }} | |
| BLUESKY_TEST_PASSWORD: ${{ secrets.BLUESKY_TEST_PASSWORD }} | |
| INSTAGRAM_HANDLE: ${{ secrets.INSTAGRAM_HANDLE }} | |
| INSTAGRAM_PASSWORD: ${{ secrets.INSTAGRAM_PASSWORD }} | |
| run: python ./main.py | |