update timestamp into seconds when logs were migrated from es with ti… #17
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: Py2-build-test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
container: | |
image: python:2.7.18-buster | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
python -V | |
python -m pip install --upgrade pip setuptools | |
python -m pip install . | |
- name: Show dependencies | |
run: | | |
python -m pip freeze | |
- name: Run build tests | |
run: | | |
python -m pip install pytest | |
python -m pytest tests/ci/build-test/ |