Skip to content

Add error-handling to shutil.rmtree 🛠️ #43

Add error-handling to shutil.rmtree 🛠️

Add error-handling to shutil.rmtree 🛠️ #43

Workflow file for this run

name: 🧪 Test
on: push
env:
CC: gcc
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Run image
uses: abatilo/actions-poetry@v4
with:
poetry-version: "latest"
- name: install make
run: choco install -y make
if: runner.os == 'Windows'
- name: Run tests
run: |
poetry install
poetry run pytest