Merge pull request #144 from estie-inc/dependabot/cargo/rust/dependen… #24
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: Method Comparison | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| # Allow manual triggering | |
| jobs: | |
| update-method-comparison: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Run method_comparison tool | |
| working-directory: rust/tools/method_comparison | |
| run: | | |
| cargo run --release -- --output ../../../docs/method_comparison.md | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| commit-message: Update method comparison document | |
| title: Update method comparison document | |
| body: | | |
| This PR updates the method comparison document. | |
| Generated automatically by the Method Comparison GitHub Action. | |
| branch: update-method-comparison | |
| delete-branch: true |