fixed CORS index.php
missing
#29
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: Analysis & Coverage | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
permissions: | |
contents: read | |
concurrency: | |
group: ana_cov-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
analysis: | |
runs-on: ubuntu-22.04 | |
name: Analysis | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install from source | |
run: | | |
python3 -m pip install -r requirements.txt | |
- name: Run Analysis | |
run: | | |
python3 -m pip install pylint | |
python3 -m pylint --recursive=y "ex_app/lib/" |