Skip to content

Fix compilation

Fix compilation #1

Workflow file for this run

name: DFetch
on: push
jobs:
dfetch:
runs-on: ubuntu-latest
permissions:
# required for all workflows
security-events: write
steps:
- name: Checkout
uses: actions/checkout@v6.0.0
- name: Set up python 3.10
uses: actions/setup-python@v6.2.0
with:
python-version: "3.10"
- name: Set up dfetch
run: |
python -m pip install --upgrade pip
pip install git+https://github.com/dfetch-org/dfetch.git#egg=dfetch
- name: Check dependencies
run: dfetch check --sarif sarif.json
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: sarif.json