fix: added ticket_id to razorpay order_notes #12
Workflow file for this run
This file contains 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: Rust Build CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
rust: | |
name: Test Rust Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Installing Rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Building with Cargo | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --release |