Skip to content

Bump click from 8.1.3 to 8.1.6 #371

Bump click from 8.1.3 to 8.1.6

Bump click from 8.1.3 to 8.1.6 #371

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@v3
- name: Build Docker image
uses: docker/build-push-action@v4
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@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
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