Skip to content

"Updated README.md with new table of contents, added development sect… #58

"Updated README.md with new table of contents, added development sect…

"Updated README.md with new table of contents, added development sect… #58

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Install rutificador
run: |
pip install -e .
- name: Run tests
run: |
python -m pytest -v tests/