Skip to content

Drop the noslop lint job from CI #27

Drop the noslop lint job from CI

Drop the noslop lint job from CI #27

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: ${{ matrix.python-version }}
- name: Run tests (stdlib only, no install needed)
run: python -m unittest discover -s tests -t . -v
- name: Smoke-test the CLI end to end
run: |
python -m skillxray tests/corpus/benign/weather --fail-on high
python -m skillxray tests/corpus/malicious/cookie-stealer --json --fail-on none