Skip to content

Vendor libprojectM in projectm-sys crate (#13) #103

Vendor libprojectM in projectm-sys crate (#13)

Vendor libprojectM in projectm-sys crate (#13) #103

Workflow file for this run

name: Windows (x64)
on:
push:
branches:
- "*"
tags:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
name: Build & Test Rust Crate
runs-on: windows-latest
env:
RUST_BACKTRACE: full
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Dependencies
run: vcpkg --triplet=x64-windows-static-md install glew
- name: Update Local Toolchain
run: |
rustup update
rustup component add clippy
- name: Toolchain Info
run: |
cargo --version --verbose
rustc --version
cargo clippy --version
- name: Lint
run: |
cargo fmt -- --check
# cargo clippy -- -D warnings
- name: Run Tests
run: |
cargo check
# cargo test --all
- name: Build Debug
run: cargo build