From 42221b48eded1cc853b80a771a69a8f362c005db Mon Sep 17 00:00:00 2001 From: deathaxe Date: Sat, 11 Apr 2026 09:35:33 +0200 Subject: [PATCH] Fix extra-packages usage in README The `extra-packages` field is valid only for setup action. It specifies which extra packages to install before testing anything. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 37048e1d..03f6db39 100644 --- a/README.md +++ b/README.md @@ -244,6 +244,8 @@ jobs: - uses: SublimeText/UnitTesting/actions/setup@v1 with: sublime-text-version: ${{ matrix.st-version }} + extra-packages: | + A File Icon:SublimeText/AFileIcon # run color scheme tests (only on Linux) - if: ${{ matrix.os == 'ubuntu-latest' }} @@ -259,8 +261,6 @@ jobs: - uses: SublimeText/UnitTesting/actions/run-tests@v1 with: coverage: true - extra-packages: | - A File Icon:SublimeText/AFileIcon - uses: codecov/codecov-action@v4 ```