csbindgen/.github/workflows/build-debug.yml

28 lines
581 B
YAML
Raw Permalink Normal View History

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-08-30 17:53:38 +01:00
- run: cargo test
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
2023-11-15 03:20:22 +00:00
- run: dotnet build -c Debug