From dd7b73b64f1c76dd2ad138a6489d18733d406294 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9rome=20Eertmans?= Date: Sat, 28 Sep 2024 12:14:08 +0200 Subject: [PATCH] fix(ci): remove PDM install --- .github/workflows/lint.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8890c40..170f287 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,11 +20,6 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Install Python - uses: actions/setup-python@v5 - with: - python-version: '3.11' - - name: Install pre-commit run: pip install pre-commit @@ -44,21 +39,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Install PDM - uses: pdm-project/setup-pdm@v4 - with: - python-version: '3.11' - cache: true - - name: Install Rust nightly uses: dtolnay/rust-toolchain@nightly with: components: clippy,rustfmt - - name: Install dependencies - run: | - pdm install -G test,github-action - - name: Run pre-commit hooks uses: pre-commit/action@v3.0.1