Skip to content

🛠️ CI: Bump discord-py from 2.5.2 to 2.6.4 (#303) Bumps [discord-py](https://github.com/Rapptz/discord.py) from 2.5.2 to 2.6.4. - [Commits](https://github.com/Rapptz/discord.py/compare/v2.5.2...v2.6.4) --- updated-dependencies: - dependency-name: discord-py dependency-version: 2.6.4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.... #789

🛠️ CI: Bump discord-py from 2.5.2 to 2.6.4 (#303) Bumps [discord-py](https://github.com/Rapptz/discord.py) from 2.5.2 to 2.6.4. - [Commits](https://github.com/Rapptz/discord.py/compare/v2.5.2...v2.6.4) --- updated-dependencies: - dependency-name: discord-py dependency-version: 2.6.4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github....

🛠️ CI: Bump discord-py from 2.5.2 to 2.6.4 (#303) Bumps [discord-py](https://github.com/Rapptz/discord.py) from 2.5.2 to 2.6.4. - [Commits](https://github.com/Rapptz/discord.py/compare/v2.5.2...v2.6.4) --- updated-dependencies: - dependency-name: discord-py dependency-version: 2.6.4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.... #789

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@v5
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