Skip to content

updates workflow

updates workflow #4

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- development
jobs:
build:
runs-on: ubuntu-latest
environment:
name: development
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: pip install tox
- name: Run tests
run: tox