Skip to content

Started work on applying the patch #6

Started work on applying the patch

Started work on applying the patch #6

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: msbdiff-linux
path: ${{runner.workspace}}/msbt_lib/target/debug/msbdiff
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: msbdiff-windows
path: ${{runner.workspace}}/msbt_lib/target/debug/msbdiff.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: msbdiff-mac
path: ${{runner.workspace}}/msbt_lib/target/debug/msbdiff