diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b8e4862..1f54953 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,15 +19,16 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup MATLAB uses: matlab-actions/setup-matlab@v1 with: release: R2020b + products: Deep_Learning_Toolbox Parallel_Computing_Toolbox - name: Run tests and generate artifacts - uses: matlab-actions/run-tests@v1 + uses: matlab-actions/run-tests@v2 with: source-folder: src select-by-folder: test @@ -41,6 +42,9 @@ jobs: report_paths: test-results/results.xml - name: Code Coverage Summary Report - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v4 + if: always() + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: files: code-coverage/coverage.xml diff --git a/README.md b/README.md index 66b5963..55ebd77 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Documentation Status](https://readthedocs.org/projects/tensortrack/badge/?version=latest)](https://tensortrack.readthedocs.io/en/latest/?badge=latest) [![CI](https://github.com/quantumghent/TensorTrack/actions/workflows/CI.yml/badge.svg)](https://github.com/quantumghent/TensorTrack/actions/workflows/CI.yml) - [![Codecov](https://codecov.io/gh/quantumghent/TensorTrack/branch/main/graph/badge.svg?token=1I0XEB69TQ)](https://codecov.io/gh/quantumghent/TensorTrack) + [![codecov](https://codecov.io/gh/quantumghent/TensorTrack/graph/badge.svg?token=NdumVqzQuM)](https://codecov.io/gh/quantumghent/TensorTrack) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![DOI](https://zenodo.org/badge/481924253.svg)](https://zenodo.org/badge/latestdoi/481924253) @@ -88,6 +88,7 @@ The design of the algorithms is chosen such that the inclusion of symmetries sho This project depends on the following: - MATLAB version R2020b or newer - [Parallel Computing Toolbox](https://de.mathworks.com/products/parallel-computing.html) +- [Deep Learning Toolbox](https://de.mathworks.com/products/deep-learning.html) - A C++ compiler compatible with your MATLAB version for MEX-file compilation. ### Installation diff --git a/.github/workflows/codecov.yml b/codecov.yml similarity index 100% rename from .github/workflows/codecov.yml rename to codecov.yml