Add pre-commit hooks #564
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v6 | |
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 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: pip install pre-commit poetry | |
- name: Run pre-commit checks | |
run: pre-commit run --all-files | |
- name: Install package | |
run: poetry install | |
- name: Run unit tests | |
run: poetry run pytest . --cov --cov-report=xml | |
- name: Upload coverage to codecov | |
uses: codecov/codecov-action@v3 |