Skip to content

documentation and directory improvement. Readme modifications (again) #11

documentation and directory improvement. Readme modifications (again)

documentation and directory improvement. Readme modifications (again) #11

Workflow file for this run

name: Testing Pipeline
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[test]"
- name: Run tests
run: |
make test-coverage
- name: Upload test results
uses: actions/upload-artifact@v3
with:
name: test-results
path: |
coverage.xml
htmlcov/
test-results/
performance-results/
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
fail_ci_if_error: true
distributed-tests:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[test]"
- name: Run distributed tests
run: |
make test-distributed
- name: Upload distributed test results
uses: actions/upload-artifact@v3
with:
name: distributed-test-results
path: distributed-test-results/