Skip to content

allow negative numbers for set arguments #19

allow negative numbers for set arguments

allow negative numbers for set arguments #19

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: rustfmt
run: cargo fmt --check
- name: clippy
run: cargo clippy
- name: Build Debug
run: cargo build --verbose
- uses: actions/upload-artifact@v4
with:
name: binaries (debug)
path: |
target/i686-pc-windows-msvc/debug/sbz-switch.exe
target/i686-pc-windows-msvc/debug/sbz_switch.pdb
- name: Build Release
run: cargo build --release --verbose
- uses: actions/upload-artifact@v4
with:
name: binaries
path: |
target/i686-pc-windows-msvc/release/sbz-switch.exe
target/i686-pc-windows-msvc/release/sbz_switch.pdb