Skip to content

🛠️ CI: Bump ruff from 0.14.2 to 0.14.6 (#315) Bumps [ruff](https://github.com/astral-sh/ruff) from 0.14.2 to 0.14.6. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.14.2...0.14.6) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.14.6 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: d... #804

🛠️ CI: Bump ruff from 0.14.2 to 0.14.6 (#315) Bumps [ruff](https://github.com/astral-sh/ruff) from 0.14.2 to 0.14.6. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.14.2...0.14.6) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.14.6 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: d...

🛠️ CI: Bump ruff from 0.14.2 to 0.14.6 (#315) Bumps [ruff](https://github.com/astral-sh/ruff) from 0.14.2 to 0.14.6. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.14.2...0.14.6) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.14.6 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: d... #804

Workflow file for this run

name: EuroPython Discord Bot CI
run-name: "🛠️ CI: ${{ github.event.head_commit.message }} (${{ github.sha }})"
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.7.3"
- name: Install Python
run: uv python install
- name: Install dependencies
run: uv sync --dev
- name: Run code checks
run: uv run --dev pre-commit run --all-files