Update samples and Readme

This commit is contained in:
2023-04-12 17:40:25 +02:00
parent fa8c4a221d
commit 25d341aee5
5 changed files with 16 additions and 12 deletions

View File

@@ -20,14 +20,14 @@ jobs:
with:
submodules: recursive
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
pip install -q --upgrade pip
pip install -q scikit-learn cython
pip install -q --upgrade codecov coverage black flake8 codacy-coverage
pip install -q coverage black flake8 codacy-coverage
- name: Build and install
run: |
make install
@@ -40,7 +40,7 @@ jobs:
coverage run -m unittest discover -v -s src
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml