Skip to content

Commit

Permalink
Tried to fix issue with specifying multiple excludes.
Browse files Browse the repository at this point in the history
  • Loading branch information
MeltyPlayer committed May 7, 2024
1 parent 7497e3e commit 9af4794
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: dotnet build --no-restore
working-directory: FinModelUtility
- name: Test
run: dotnet test --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=lcov /p:ExcludeByFile="**/KSoft/**/*.cs,**/SceneGate/**/*.cs"
run: dotnet test --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=lcov /p:ExcludeByFile=**/Fin.Ui/**/*.cs,**/KSoft/**/*.cs,**/SceneGate/**/*.cs
working-directory: FinModelUtility

- name: Set Up NPM
Expand Down
4 changes: 0 additions & 4 deletions FinModelUtility/Formats/Ast/Ast/src/schema/AstAdpcm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ private void ReadAdpcm_(IBinaryReader br) {
var blocks =
new LinkedList<(byte[] left, byte[] right)>();
while (!br.Eof) {
if (br.Eof) {
break;
}

var blckHeader = br.ReadNew<BlckHeader>();

// TODO: Does this need to be split up as left/right channels??
Expand Down

0 comments on commit 9af4794

Please sign in to comment.