proposal: increase default batch size (#16) #59
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: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
PACKAGE_DIR: arango_datasets | |
TESTS_DIR: tests | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
name: Lint - Python ${{ matrix.python }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python ${{ matrix.python }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install packages | |
run: pip install .[dev] | |
- 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 bandit | |
run: bandit --exclude "./tests/*" -r ./ | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
name: Test - Python ${{ matrix.python }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python ${{ matrix.python }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Set up ArangoDB Instance via Docker | |
run: docker create --name adb -p 8529:8529 -e ARANGO_ROOT_PASSWORD=openSesame arangodb/arangodb:3.10.0 | |
- name: Start ArangoDB Instance | |
run: docker start adb | |
- name: Setup pip | |
run: python -m pip install --upgrade pip setuptools wheel | |
- name: Install packages | |
run: pip install .[dev] | |
- 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 --cov-fail-under=75 | |