Skip to content

fix: improve SID resolution and credential matching for DPAPI loot #66

fix: improve SID resolution and credential matching for DPAPI loot

fix: improve SID resolution and credential matching for DPAPI loot #66

Workflow file for this run

name: Tests
on:
push:
branches: [ main, staging, feature/* ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install -e .
- name: Lint with ruff
continue-on-error: true
run: |
ruff check taskhound/ tests/
- name: Test with pytest
run: |
pytest -m "not live" --cov=taskhound --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
fail_ci_if_error: false