Skip to content

Commit

Permalink
Update unit_tests.yml to the workflow on windows, ubuntu, and macos.
Browse files Browse the repository at this point in the history
  • Loading branch information
menouarazib committed Jul 25, 2023
1 parent 88e2bfe commit 829252b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,13 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Update pip and setuptools
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools
- name: Install dependencies
run: |
pip install ruff pytest coverage
pip install -r requirements.txt
- name: Lint with ruff
Expand All @@ -42,8 +46,8 @@ jobs:
with:
name: coverage-report
path: coverage.xml
- name: Coveralls (Run only on Linux and macOS)
if: ${{ matrix.os != 'windows-latest' }}
- name: Run Coveralls (only for ubuntu-latest and python 3.10)
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: coverallsapp/github-action@v2
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ Universal Event Detection in Time Series

- [Introduction](#introduction)
- [Installation](#installation)
- [Quickstart](#Quickstart)
- [Make Prediction](#Make Prediction)
- [Quickstart](#quickstart)
- [Make Prediction](#make-prediction)
- [Documentation](#documentation)
- [How to credit our package](#How to credit our package)
- [How to credit our package](#how-to-credit-our-package)

## Introduction
Welcome to **EventDetector**, a Python package for detecting events in time series data. The emphasis of this package
Expand Down

0 comments on commit 829252b

Please sign in to comment.