Commit e18aebda authored by Mickaël Desfrênes's avatar Mickaël Desfrênes
Browse files

remove .gitlab-ci.yml

parent 10033dd6
Loading
Loading
Loading
Loading

.gitlab-ci.yml

deleted100644 → 0
+0 −21
Original line number Diff line number Diff line
stages:
  - test

dependency_vulnerability_scan:
  stage: test
  image: alpine:latest
  before_script:
    - apk add --no-cache osv-scanner
  script:
    - |
      set +e
      osv-scanner scan -L uv.lock \
        --format=json \
        --output-file=osv-report.json
      STATUS=$?
      test -f osv-report.json
      exit $STATUS
  artifacts:
    when: always
    paths:
      - osv-report.json
 No newline at end of file