change: Remove PythonCall dep and extension #111
Workflow file for this run
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: Semgrep Codescan | |
on: | |
pull_request: | |
branches: | |
- main | |
- feature/** | |
jobs: | |
semgrep-codescan: | |
name: Semgrep Codescan | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install Semgrep | |
run: python3 -m pip install semgrep | |
- name: Get rules from JuliaComputing | |
run: git clone https://github.com/JuliaComputing/semgrep-rules-julia.git | |
- name: Run Semgrep Julia rules | |
run: semgrep --error --config semgrep-rules-julia/rules . |