Skip to content

Commit

Permalink
Update CI and coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
leburgel committed Feb 9, 2024
1 parent 5d0e9ac commit c046299
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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
Expand Down
File renamed without changes.

0 comments on commit c046299

Please sign in to comment.