Skip to content

Potential fix for code scanning alert no. 23: Incomplete string escaping or encoding #194

Potential fix for code scanning alert no. 23: Incomplete string escaping or encoding

Potential fix for code scanning alert no. 23: Incomplete string escaping or encoding #194

Workflow file for this run

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