PPPSYS-44518 Converted int values like gt_ms
to strings
#34
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 package using various python versions | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] | |
name: Tests (Python ${{ matrix.python-version }}) | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Install poetry | |
uses: abatilo/actions-poetry@c1aba0c402ae0d96fbb6d94050592a56b202009f | |
- name: Build and install poetry package | |
run: poetry build && poetry install | |
- name: Verify, that import_logs is properly called | |
run: poetry run piwik_pro_log_analytics --help | |
timeout-minutes: 30 |