Skip to content

🛠️ CI: Bump aiohttp from 3.9.5 to 3.10.10 (#188) Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.9.5 to 3.10.10. - [Release notes](https://github.com/aio-libs/aiohttp/releases) - [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst) - [Commits](https://github.com/aio-libs/aiohttp/compare/v3.9.5...v3.10.10) --- updated-dependencies: - dependency-name: aiohttp dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot... #555

🛠️ CI: Bump aiohttp from 3.9.5 to 3.10.10 (#188) Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.9.5 to 3.10.10. - [Release notes](https://github.com/aio-libs/aiohttp/releases) - [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst) - [Commits](https://github.com/aio-libs/aiohttp/compare/v3.9.5...v3.10.10) --- updated-dependencies: - dependency-name: aiohttp dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot...

🛠️ CI: Bump aiohttp from 3.9.5 to 3.10.10 (#188) Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.9.5 to 3.10.10. - [Release notes](https://github.com/aio-libs/aiohttp/releases) - [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst) - [Commits](https://github.com/aio-libs/aiohttp/compare/v3.9.5...v3.10.10) --- updated-dependencies: - dependency-name: aiohttp dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot... #555

Workflow file for this run

name: EuroPython Discord Bot CI
run-name: "🛠️ CI: ${{ github.event.head_commit.message }} (${{ github.sha }})"
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: 🕵 Lint Python code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.11.4'
- name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
- run: pipenv install --dev
- name: Run Black
run: pipenv run black --check .
- name: Run Flake8
run: pipenv run flake8 .
- name: Run isort
run: pipenv run isort --check .
test:
name: 🛠️ Test Python code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.11.4'
- name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
- run: pipenv install --dev
- name: Run pytest
run: pipenv run pytest .