Release Fedot.Industrial 0.5. Anomaly detection, Forecasting,Sampling,Multimodal strategy. #244
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
strategy: | |
matrix: | |
python-version: [3.9, '3.10'] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache Poetry virtualenv | |
uses: actions/cache@v2 | |
with: | |
path: ~/.local/share/poetry/virtualenvs/ # Cache Poetry virtualenvs | |
key: ${{ runner.os }}-poetry-${{ hashFiles('pyproject.toml') }} # Cache key based on project dependencies | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 1.8.2 # Specify your desired Poetry version (pin it for stability) | |
virtualenvs-create: true | |
virtualenvs-in-project: true # Create venv within project directory | |
- name: Install dependencies | |
run: poetry install | |
- name: Bump up FEDOT to a stable revision (temporary) | |
run: poetry add git+https://github.com/aimclub/FEDOT.git@e0b4ee7 | |
- name: Run tests with pytest | |
run: poetry run pytest --cov=fedot_ind --cov-report xml:coverage.xml tests/unit | |
- name: Codecov-coverage | |
uses: codecov/codecov-action@v4 | |
with: | |
file: ./coverage.xml | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: unittests |