Skip to content

now getting request_id too. #207

now getting request_id too.

now getting request_id too. #207

Workflow file for this run

name: CI/CD
on:
push:
branches:
- "*"
tags:
- "*"
pull_request:
jobs:
test:
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
uses: Gr1N/setup-poetry@v7
- name: Install dependencies
run: |
poetry install
pip list
- name: Lint with Flake8
run: |
poetry run flake8
- name: Test with pytest
run: |
poetry run coverage run -m --source=src pytest tests
poetry run coverage xml
- name: Report coverage using codecov
if: github.event_name == 'push' && matrix.python-version == 3.8
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml # optional
flags: unittests # optional