Skip to content

Add file change detection and reload. #12

Add file change detection and reload.

Add file change detection and reload. #12

Workflow file for this run

name: Rust Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose --release
- name: Run tests
run: cargo test --verbose
- name: 'Upload Debug'
uses: actions/upload-artifact@v3
with:
name: build-debug
path: target/debug/*.*
- name: 'Upload Release'
uses: actions/upload-artifact@v4
with:
name: build-release
path: target/release/*.*