Skip to content

Fix clippy suggestions #96

Fix clippy suggestions

Fix clippy suggestions #96

Workflow file for this run

name: Windows MinGW
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: Rustup Toolchain
run: rustup toolchain install --force-non-host stable-x86_64-pc-windows-gnu
- name: Rustup Target
run: rustup target add x86_64-pc-windows-gnu
- name: Build
run: cargo +stable-x86_64-pc-windows-gnu build --release --verbose --target x86_64-pc-windows-gnu
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
name: insanity-mingw.exe
path: target/x86_64-pc-windows-gnu/release/insanity.exe