Skip to content

Initial QSIEMLab skeleton #1

Initial QSIEMLab skeleton

Initial QSIEMLab skeleton #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install -r src/ml/requirements.txt
- name: Run basic tests
run: |
python -c "import pandas as pd; print('pandas', pd.__version__)"