Ethereum key check #65
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: Ethereum key check | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * *' # Daily at 00:00 UTC | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install PyYAML | |
run: pip install PyYAML | |
- name: Check keys | |
# --dev checks against an unpinned commit. since new vars can be added at any time unpinned commits | |
# are checked on a cron, not on regular flows. | |
run: python scripts/assert_declare_ethereum_vars.py ${{ github.event_name == 'schedule' && '--dev' || '' }} | |