Skip to content

wly EnchantedSword swing #12

wly EnchantedSword swing

wly EnchantedSword swing #12

Workflow file for this run

name: RustWindows
on:
push:
branches: ["main"]
pull_request:
branches: ["main", "dev"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cd gdrust && cargo build --all
- name: Build Release
run: cd gdrust && cargo build --all --release
- name: Run tests Debug
run: cd gdrust && cargo test --all
- name: Run tests Release
run: cd gdrust && cargo test --release --all