Harden cert decode and signer errors to avoid sensitive logging #76
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: ci | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| windows: | |
| runs-on: windows-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Install .NET 8 | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: "8.0.x" | |
| - name: Install cargo-deny | |
| run: cargo install cargo-deny --locked | |
| - name: Dependency audit (cargo deny) | |
| run: cargo deny check | |
| continue-on-error: true | |
| - name: Cargo test | |
| run: cargo test | |
| - name: Cargo build (release) | |
| run: cargo build --release | |
| - name: Dotnet restore (test project) | |
| run: dotnet restore winui.tests/EscpeWinUI.Tests.csproj | |
| - name: Dotnet test (C# unit tests) | |
| run: dotnet test winui.tests/EscpeWinUI.Tests.csproj -c Release --no-restore | |
| - name: Dotnet build (WinUI) | |
| run: dotnet build winui/EscpeWinUI.csproj -c Release | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: escpe-binaries | |
| path: | | |
| target/release/escpe.exe | |
| target/release/escpe_core.dll |