Skip to content

Bump authlib from 1.2.1 to 1.3.1 #551

Bump authlib from 1.2.1 to 1.3.1

Bump authlib from 1.2.1 to 1.3.1 #551

Workflow file for this run

name: Build and test
on:
pull_request:
jobs:
docker:
name: Docker tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build Docker image
uses: docker/build-push-action@v5
with:
context: .
tags: ${{ github.repository }}:test
- name: Test Docker image
run: docker run --rm --user root:root --entrypoint bash ${{ github.repository }}:test -c 'pip install pytest-asyncio && pytest --pyargs gcn_classic_to_kafka'
python:
name: Python tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: psf/black@stable
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Poetry
run: pip install poetry
- name: Install package
run: poetry install
- name: Run flake8 linter
run: poetry run flake8
- name: Run unit tests
run: poetry run pytest . --cov --cov-report=xml
- name: Upload coverage to codecov
uses: codecov/codecov-action@v3