8000 Fix: Solve garbage collection deleting issues that raises individually and stops the garbage process. (#792) · aleph-im/pyaleph@5b36122 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix: Solve garbage collection deleting issues that raises individuall… #693

Fix: Solve garbage collection deleting issues that raises individuall…

Fix: Solve garbage collection deleting issues that raises individuall… #693

Workflow file for this run

---
name: Test code quality
on:
push:
branches:
- "*"
jobs:
code-quality:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install pip and hatch
run: |
sudo apt-get install -y python3-pip
pip3 install hatch hatch-vcs
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-code-quality-${{ hashFiles('pyproject.toml') }}
restore-keys: |
${{ runner.os }}-code-quality-${{ hashFiles('pyproject.toml') }}
- name: Run Hatch lint
run: hatch run linting:all
0