MNT remove seaborn as dep, remove configure_plt, add matplotlib as an… #515
This file contains hidden or 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: build | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: | |
| branches: | |
| - 'main' | |
| jobs: | |
| build-linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python 3.8 | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.8 | |
| - name: install | |
| run: | | |
| pip install -U pip | |
| pip install -e . | |
| - name: test | |
| run: | | |
| pip install pytest pytest-cov coverage numpydoc | |
| pytest -lv --cov-report term-missing celer --cov=celer --cov-config .coveragerc | |
| - name: codecov | |
| uses: codecov/codecov-action@v4.0.1 | |
| with: | |
| slug: mathurinm/celer | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: .coveragerc | |
| flags: unittests | |
| fail_ci_if_error: true | |
| verbose: true |