diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 6dcea6bc4..e19b34a2f 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -41,5 +41,5 @@ jobs: run: dotnet build -c Release - name: Run perft ${{ github.event.inputs.depth }} on ${{ github.event.inputs.fen }} - run: dotnet run -c Release --no-build "bench"' + run: dotnet run -c Release --no-build "bench" working-directory: ./src/Lynx.Cli diff --git a/.github/workflows/perft.yml b/.github/workflows/perft.yml index c3dff32f1..62fef1be7 100644 --- a/.github/workflows/perft.yml +++ b/.github/workflows/perft.yml @@ -48,7 +48,7 @@ jobs: run: dotnet build -c Release - name: Run perft ${{ github.event.inputs.depth }} on ${{ github.event.inputs.fen }} - run: dotnet run -c Release --no-build "position fen ${{ github.event.inputs.fen }}" "perft ${{ github.event.inputs.depth }}" "quit"' + run: dotnet run -c Release --no-build "position fen ${{ github.event.inputs.fen }}" "perft ${{ github.event.inputs.depth }}" "quit" working-directory: ./src/Lynx.Cli divide: @@ -83,5 +83,5 @@ jobs: run: dotnet build -c Release - name: Run divide ${{ github.event.inputs.depth }} on ${{ github.event.inputs.fen }} - run: dotnet run -c Release --no-build "position fen ${{ github.event.inputs.fen }}" "divide ${{ github.event.inputs.depth }}" "quit"' + run: dotnet run -c Release --no-build "position fen ${{ github.event.inputs.fen }}" "divide ${{ github.event.inputs.depth }}" "quit" working-directory: ./src/Lynx.Cli