Skip to content

Enable ruff bandit checks #1542

Enable ruff bandit checks

Enable ruff bandit checks #1542

Workflow file for this run

name: Keiko Run the robot framework integration tests
on:
push:
branches:
- 'main'
- 'release-*'
tags:
- '*'
paths:
- keiko/**
pull_request:
paths:
- keiko/**
jobs:
itest:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install requirements-dev.txt
run: pip install -r requirements-dev.txt
working-directory: ./keiko
- name: Run integration tests
run: make itest
working-directory: ./keiko