Skip to content

fix: Set SANDBOX_SKIP_LANDLOCK at job level, add debug step #5

fix: Set SANDBOX_SKIP_LANDLOCK at job level, add debug step

fix: Set SANDBOX_SKIP_LANDLOCK at job level, add debug step #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
env:
SANDBOX_SKIP_LANDLOCK: "1"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Fix file permissions
run: chmod -R a+r .
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Lint
run: ruff check sandbox/ tests/
- name: Debug permissions
run: |
ls -la sandbox/profiles/
stat sandbox/profiles/minimal.yaml
python -c "open('sandbox/profiles/minimal.yaml').read()[:20]"
- name: Test
run: pytest -v --tb=short