functions: Accept null repeat intervals #25
Workflow file for this run
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: Check Wix Gateway Proxy | |
| # No paths or branches filter: this is meant to be a required status check, and | |
| # a filtered workflow leaves unrelated PRs pending forever. It also keeps | |
| # stacked PRs (which target other branches) covered. | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-wix-proxy: | |
| name: Wix Gateway Proxy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4 | |
| - name: Wix gateway proxy (mandatory) | |
| uses: ./.github/actions/wix-gateway-proxy | |
| - name: Set up Python | |
| uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install PyYAML | |
| run: pip install --require-hashes -r .github/scripts/requirements-check-wix-proxy.txt | |
| - name: Test the proxy-step checker | |
| run: python3 .github/scripts/test_check_wix_proxy_steps.py | |
| - name: Check every job runs the Wix gateway proxy | |
| run: python3 .github/scripts/check_wix_proxy_steps.py |