Skip to content

docs: Replace mention of Makefile with reference to tox.ini #119

docs: Replace mention of Makefile with reference to tox.ini

docs: Replace mention of Makefile with reference to tox.ini #119

Workflow file for this run

name: build
on:
push:
branches:
- master
- develop
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/test.txt
pip install -e .
- name: Lint with Flake8
run: flake8 .
- name: Test with Pytest
run: pytest --cov=readingbricks
- name: Create and upload Codecov report
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
fail_ci_if_error: true