Fix CFP close date rendering missing the month #55
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: CSP Check | |
| on: | |
| push: | |
| paths: | |
| - static/_headers | |
| - csp-dynamic-loaders.yml | |
| - scripts/check-csp.py | |
| - layouts/** | |
| pull_request: | |
| paths: | |
| - static/_headers | |
| - csp-dynamic-loaders.yml | |
| - scripts/check-csp.py | |
| - layouts/** | |
| jobs: | |
| csp-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - run: pip install pyyaml | |
| - run: python scripts/check-csp.py --verbose |