From 2b151ebc6bee385aaaf446fb11c72999bc4ed546 Mon Sep 17 00:00:00 2001 From: Adam Szerszenowicz <70147389+Pogromca-SCP@users.noreply.github.com> Date: Thu, 29 Feb 2024 09:20:40 +0100 Subject: [PATCH] Fixed tests --- CHANGELOG.md | 6 ++++++ action.yml | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ace0627..4e0a9f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.1] - 2024-02-29 + +### Fixed + +- Tests not running due to outdated input name. + ## [1.1.0] - 2024-02-06 ### Added diff --git a/action.yml b/action.yml index 961a8bc..2c76d91 100644 --- a/action.yml +++ b/action.yml @@ -59,12 +59,12 @@ runs: run: ${{ github.action_path }}/build_project.ps1 -referencesVariable ${{ inputs.refs-variable }} -depotDownloaderVersion ${{ inputs.depot-downloader-version }} -config ${{ inputs.configuration }} - name: Run initial tests - if: ${{ inputs.runTests }} + if: ${{ inputs.run-tests }} shell: pwsh run: ${{ github.action_path }}/init_tests.ps1 -referencesVariable ${{ inputs.refs-variable }} -initialRuns ${{ inputs.initial-test-runs }} - name: Run tests - if: ${{ inputs.runTests }} + if: ${{ inputs.run-tests }} shell: pwsh run: dotnet test --no-build --verbosity normal