simple DVT related factories #157
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: Slither Analysis | |
on: | |
push: | |
branches: [develop, master] | |
pull_request: | |
branches: [develop] | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10.6" | |
- name: Install poetry requirements | |
run: > | |
curl -sSL https://install.python-poetry.org | python - && | |
poetry run pip install "cython<3.0" pyyaml==5.4.1 --no-build-isolation && | |
poetry install | |
- name: Run slither | |
run: > | |
poetry run slither . --sarif results.sarif || true | |
- name: Check results.sarif presence | |
id: results | |
if: always() | |
shell: bash | |
run: > | |
test -f results.sarif && | |
echo '::set-output name=value::present' || | |
echo '::set-output name=value::not' | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v2 | |
if: ${{ always() && steps.results.outputs.value == 'present' }} | |
with: | |
sarif_file: results.sarif |