Skip to content

689 doc as soon as new version of sweetbean is released update closed loop example bandit task #715

689 doc as soon as new version of sweetbean is released update closed loop example bandit task

689 doc as soon as new version of sweetbean is released update closed loop example bandit task #715

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test with py.test
on:
pull_request:
merge_group:
jobs:
test:
strategy:
fail-fast: true
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: pip install -U ".[test]"
- run: pytest