fixes #48 in generating trail meshes and some clippy lints #23
Workflow file for this run
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
on: | |
push: | |
paths: | |
- 'crates/jokolink/**' | |
name: Jokolink DLL | |
env: | |
CARGO_INCREMENTAL: 0 | |
jobs: | |
build-jokolink-dll: | |
name: build-jokolink-dll | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@v1 | |
- name: Build Jokolink DLL | |
run: cargo build --release -p jokolink | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: jokolink.dll | |
path: "./target/release/jokolink.dll" |