Remove unwraps and create default pretty connection.json #77
This file contains 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
# create binary on windows | |
name: build_binaries | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
# --------------------------------------------------------------------------- | |
build_windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
- name: Display cargo version | |
run: cargo --version | |
- name: Try to Build | |
run: cargo build --verbose --release | |
# Release version is supposed to have a faster runtime than debug | |
- name: Upload windows binaries release | |
uses: actions/upload-artifact@v4 | |
with: | |
name: windows_binaries | |
path: target/release/panduza-rust-platform.exe |