Skip to content

forgot to change executable name, woops #10

forgot to change executable name, woops

forgot to change executable name, woops #10

Workflow file for this run

name: Debug builds
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
linux:
name: Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/upload-artifact@v1
with:
name: msbtool-linux
path: ${{runner.workspace}}/msbt_lib/target/debug/msbtool
windows:
name: Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/upload-artifact@v1
with:
name: msbtool-windows
path: ${{runner.workspace}}/msbt_lib/target/debug/msbtool.exe
macos:
name: Mac
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/upload-artifact@v1
with:
name: msbtool-mac
path: ${{runner.workspace}}/msbt_lib/target/debug/msbtool