Skip to content

chore: remove unused sandbox script #2

chore: remove unused sandbox script

chore: remove unused sandbox script #2

Workflow file for this run

name: ⚙️ Test
on:
push:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: ⬇️ Checkout repository
- uses: actions/setup-python@v5.1.1
name: 📦 Setup Python
with:
python-version: '3.9'
cache: 'pip' # caching pip dependencies
- name: 🔍 Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: 🧪 Test
run: pytest