Bump ad-m/github-push-action from 0.8.0 to 1.0.0 #12
Workflow file for this run
This file contains hidden or 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-Debug | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| branches: | |
| - "main" | |
| jobs: | |
| build-rust: | |
| permissions: | |
| contents: read | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: Cysharp/Actions/.github/actions/checkout@main | |
| - run: cargo build --verbose | |
| - run: cargo test update_package_version -- 1.0.0 --nocapture | |
| - run: cargo test | |
| build-dotnet: | |
| permissions: | |
| contents: read | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: Cysharp/Actions/.github/actions/checkout@main | |
| - uses: Cysharp/Actions/.github/actions/setup-dotnet@main | |
| - run: dotnet build -c Debug |