Skip to content

Commit

Permalink
Merge pull request #8 from Pogromca-SCP/Fix-tests-not-running
Browse files Browse the repository at this point in the history
Fixed tests not running
  • Loading branch information
Pogromca-SCP authored Feb 29, 2024
2 parents b34b40a + 2b151eb commit 0d336c7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 0d336c7

Please sign in to comment.