2023-04-15 16:09:34 +01:00
|
|
|
name: Build-Debug
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "main"
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- "main"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-rust:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- run: cargo build --verbose
|
2023-04-15 17:27:25 +01:00
|
|
|
- run: cargo test update_package_version -- 1.0.0 --nocapture
|
2023-04-15 16:09:34 +01:00
|
|
|
build-dotnet:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main
|
|
|
|
with:
|
|
|
|
dotnet-version: 7.0.x
|
|
|
|
- run: dotnet build -c Debug
|