Skip to content

npm (deps-dev): bump tar-fs from 2.1.3 to 2.1.4 #879

npm (deps-dev): bump tar-fs from 2.1.3 to 2.1.4

npm (deps-dev): bump tar-fs from 2.1.3 to 2.1.4 #879

name: Sandbox Check
on: pull_request
jobs:
sandbox-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v6
with:
python-version: "3.13"
cache: "poetry"
- name: Install Sandbox dependencies
run: make install
working-directory: ./sandbox
- name: Install CI dependencies
run: poetry install --only ci --no-root
- name: Check Sandbox Formatting
run: make format
- name: Run Sandbox Linting
run: make lint
- name: Run Sandbox Unit Tests
run: make test
working-directory: ./sandbox