diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index cf5aa55..a90df09 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,4 +1,4 @@ # Code owners, to get auto-filled reviewer lists # To start with, we just assume everyone in the core team is included on all reviews -* @adulai @ccreutzi @debymf @MiriamScharnke @vpapanasta \ No newline at end of file +* @adulai @ccreutzi @debymf @MiriamScharnke @vpapanasta @dferreir @mscharnk @vpapanas \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6be9f48..d7f6227 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ on: [push] jobs: test: name: Run MATLAB Tests and Generate Artifacts - runs-on: ubuntu-latest + runs-on: [self-hosted, runner-source=AWS, CORE008] steps: - name: Check out repository uses: actions/checkout@v4 @@ -33,7 +33,7 @@ jobs: ollama pull moondream OLLAMA_HOST=127.0.0.1:11435 ollama pull qwen2:0.5b - name: Set up MATLAB - uses: matlab-actions/setup-matlab@v2 + uses: mw-actions/matlab-actions-setup-matlab@v2 with: products: Text_Analytics_Toolbox cache: true @@ -45,13 +45,9 @@ jobs: AZURE_OPENAI_ENDPOINT: ${{ secrets.AZURE_ENDPOINT }} AZURE_OPENAI_API_KEY: ${{ secrets.AZURE_KEY }} SECOND_OLLAMA_ENDPOINT: 127.0.0.1:11435 - uses: matlab-actions/run-tests@v2 + MLM_LICENSE_TOKEN: ${{ secrets.MATLAB_TOKEN }} + uses: mw-actions/matlab-actions-run-tests@v2 with: test-results-junit: test-results/results.xml code-coverage-cobertura: code-coverage/coverage.xml 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