Fixed the menu stuttering, passing stdin to a slave still doesn't wor… #31
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
name: Build MacOS | |
on: | |
push: | |
branches: | |
- main # Adjust this to your main branch name | |
jobs: | |
build: | |
runs-on: macos-latest # Use the latest macOS runner | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 # This step checks out your repository | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Build and Compile | |
run: cargo build --release # Run your build command | |
- name: Archive Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: MacOs_Artifact | |
path: target/release/server_host # Replace with the actual path to your compiled binary |