OpenTelemetry Tracing #210
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 | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [ master ] | |
env: | |
PACKAGE_DIR: adbpyg_adapter | |
TESTS_DIR: tests | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ["3.8", "3.9", "3.10", "3.11"] # "3.12" | |
name: Python ${{ matrix.python }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python ${{ matrix.python }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: 'pip' | |
cache-dependency-path: setup.py | |
- name: Set up ArangoDB Instance via Docker | |
run: docker create --name adb -p 8529:8529 -e ARANGO_ROOT_PASSWORD= arangodb/arangodb | |
- name: Start ArangoDB Instance | |
run: docker start adb | |
- name: Install packages | |
run: | | |
pip install torch==2.1.0 | |
pip install torch-scatter torch-sparse -f https://data.pyg.org/whl/torch-$(python -c 'import torch; print(torch.__version__.split("+")[0])')+cpu.html | |
pip install -e '.[dev, tracing]' | |
- name: Run black | |
run: black --check --verbose --diff --color ${{env.PACKAGE_DIR}} ${{env.TESTS_DIR}} | |
- name: Run flake8 | |
run: flake8 ${{env.PACKAGE_DIR}} ${{env.TESTS_DIR}} | |
- name: Run isort | |
run: isort --check --profile=black ${{env.PACKAGE_DIR}} ${{env.TESTS_DIR}} | |
- name: Run mypy | |
run: mypy ${{env.PACKAGE_DIR}} ${{env.TESTS_DIR}} | |
- name: Run pytest | |
run: pytest --cov=${{env.PACKAGE_DIR}} --cov-report xml --cov-report term-missing -v --color=yes --no-cov-on-fail --code-highlight=yes | |
- name: Publish to coveralls.io | |
if: matrix.python == '3.10' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: coveralls --service=github |