Skip to content

Update ci.yml

Update ci.yml #65

Workflow file for this run

name: Run MATLAB Tests on GitHub-Hosted Runner
on: [push]
jobs:
test:
name: Run MATLAB Tests and Generate Artifacts
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2
with:
products: Text_Analytics_Toolbox
cache: true
- name: Run tests and generate artifacts
env:
OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
uses: matlab-actions/run-tests@v2
with:
test-results-junit: test-results/results.xml
code-coverage-cobertura: code-coverage/coverage.xml
ignore:
- "*/tests/*"

Check failure on line 23 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Run MATLAB Tests on GitHub-Hosted Runner

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 23, Col: 13): A sequence was not expected
source-folder: .
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: matlab-deep-learning/llms-with-matlab