Skip to content

upd: ci fix

upd: ci fix #6

Workflow file for this run

name: Test Build
on:
push:
branches:
- '**' # This will match any branch
tags:
- '*' # This will match any tag
jobs:
test_build:
runs-on: ubuntu-latest
container:
image: python:3.11.6-slim-bookworm
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Update apt and install dependencies
run: |
apt update
pip install -r requirements.txt
pip install -r requirements-qa.txt
pip install pysigma-backend-splunk
- name: Run tests
run: |
export PYTHONPATH=$PYTHONPATH:./src/. && pytest --open-files --random-order