Preperation of v24.10.01 release of satspay #56
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: Check JSON | |
on: | |
push: | |
paths: | |
- '**.json' | |
pull_request: | |
jobs: | |
check-json: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: pip install Pillow requests | |
- name: Run check.py | |
run: python check.py |