Fix Get/Set WindowsParameters being inverted compared to everything else #74
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: dotnet | |
| on: | |
| push: | |
| branches: [ master ] | |
| paths: | |
| - .github/workflows/dotnet.yml | |
| - src/** | |
| - '!src/SampSharp/**' | |
| - SampSharp.sln | |
| - Makefile | |
| pull_request: | |
| branches: [ master ] | |
| paths: | |
| - .github/workflows/dotnet.yml | |
| - src/** | |
| - '!src/SampSharp/**' | |
| - SampSharp.sln | |
| - Makefile | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: 6.0.x | |
| - name: Restore dependencies | |
| run: dotnet restore SampSharp.sln | |
| - name: Build | |
| run: dotnet build SampSharp.sln --no-restore | |
| - name: Test | |
| run: dotnet test SampSharp.sln --no-build --verbosity normal |