fix decrypting snk (#119) #17
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
| # GitHub Actions workflow for .NET build, test, and compliance | |
| name: 🔨 .NET Build and Compliance | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: 📥 Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: ⚙️ Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "8.0.x" | |
| - name: 📦 Restore dependencies | |
| run: dotnet restore jmespath.net.sln | |
| - name: 🔨 Build | |
| run: dotnet build jmespath.net.sln --configuration Debug --no-restore | |
| - name: 🧪 Run Unit Tests | |
| run: dotnet test tests/jmespathnet.tests/jmespathnet.tests.csproj --no-build --verbosity normal | |
| - name: ✅ Run Compliance Tests | |
| run: dotnet run --project tools/jmespathnet.compliance/jmespathnet.compliance.csproj --no-build -t tools/jmespathnet.compliance/jmespath.test/tests/ |