You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
886 B
42 lines
886 B
name: Continuous Integration
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.x
|
|
|
|
- name: Install dependencies
|
|
run: pip install -r requirements.txt
|
|
|
|
- name: Run unit tests
|
|
run: pytest tests/unit
|
|
|
|
- name: Run integration tests
|
|
run: pytest tests/integration
|
|
|
|
- name: Run code coverage
|
|
run: pytest --cov=swarms tests/
|
|
|
|
- name: Run linters
|
|
run: pylint swarms
|
|
|
|
- name: Build documentation
|
|
run: make docs
|
|
|
|
- name: Validate documentation
|
|
run: sphinx-build -b linkcheck docs build/docs
|
|
|
|
- name: Run performance tests
|
|
run: find ./tests -name '*.py' -exec pytest {} \; |