Potential fix for code scanning alert no. 44: DOM text reinterpreted as HTML #199
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: pull | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| ref: 'master' | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.10' | |
| - name: Build python 3.10 | |
| run: | | |
| pip3 install Cheetah3 | |
| pip3 install six | |
| python -m compileall -l . -r 10 -q | |
| cheetah compile -R plugin | |
| python testsuite/evil_eval.py | |
| - uses: actions/checkout@v2 | |
| with: | |
| ref: 'master' | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.9' | |
| - name: Build python 3.9 | |
| run: | | |
| pip3 install Cheetah3 | |
| pip3 install six | |
| python -m compileall -l . -r 10 -q | |
| cheetah compile -R plugin | |
| python testsuite/evil_eval.py | |