From 1721cc400ce0127f872f3ccec6af4d944c99f62d Mon Sep 17 00:00:00 2001 From: Oghenemarho Orukele Date: Tue, 21 Oct 2025 21:33:43 +0200 Subject: [PATCH 1/4] chore(CI/CD): removed duplicate checks --- .github/workflows/main.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 391f81f..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Build -on: - push: - branches: ["dev"] -env: - CARGO_TERM_COLOR: always - PAYSTACK_API_KEY: ${{secrets.PAYSTACK_API_KEY}} - BANK_ACCOUNT: ${{secrets.BANK_ACCOUNT}} - BANK_CODE: ${{secrets.BANK_CODE}} - BANK_NAME: ${{secrets.BANK_NAME}} -jobs: - build-and-test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Build - run: cargo build --verbose - - name: Run tests - run: cargo test --verbose From 3263355b679c5d1c220e49dd08769ecbd7b41bd2 Mon Sep 17 00:00:00 2001 From: Oghenemarho Orukele Date: Tue, 21 Oct 2025 21:40:15 +0200 Subject: [PATCH 2/4] Revert "feat(plan): added support for modifying plans in the integration" This reverts commit df7b84056ee3a3cb551f30cd29f9518cc26cc01a. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9d5b983..f2a7dbc 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ The client currently covers the following section of the API, and the sections t - [x] Dedicated Virtual Account - [x] Apple Pay - [x] Subaccounts -- [x] Plans +- [ ] Plans - [ ] Subscriptions - [ ] Transfer Recipients - [ ] Transfers From 6e0f2d9b18eba8761c12a9a376068614e36fa5df Mon Sep 17 00:00:00 2001 From: Oghenemarho Orukele Date: Tue, 21 Oct 2025 21:41:19 +0200 Subject: [PATCH 3/4] Revert "chore(CI/CD): removed duplicate checks" This reverts commit 1721cc400ce0127f872f3ccec6af4d944c99f62d. --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..391f81f --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +name: Build +on: + push: + branches: ["dev"] +env: + CARGO_TERM_COLOR: always + PAYSTACK_API_KEY: ${{secrets.PAYSTACK_API_KEY}} + BANK_ACCOUNT: ${{secrets.BANK_ACCOUNT}} + BANK_CODE: ${{secrets.BANK_CODE}} + BANK_NAME: ${{secrets.BANK_NAME}} +jobs: + build-and-test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose From 295271ad800ce9dd91816409106456e6e9602c5b Mon Sep 17 00:00:00 2001 From: Oghenemarho Orukele Date: Tue, 21 Oct 2025 21:43:32 +0200 Subject: [PATCH 4/4] chore(CI/CD): fixed duplicate test to ensure only one test on main --- .github/workflows/main.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 391f81f..cb770de 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,7 +1,7 @@ name: Build on: push: - branches: ["dev"] + branches: ["main"] env: CARGO_TERM_COLOR: always PAYSTACK_API_KEY: ${{secrets.PAYSTACK_API_KEY}} diff --git a/README.md b/README.md index f2a7dbc..9d5b983 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ The client currently covers the following section of the API, and the sections t - [x] Dedicated Virtual Account - [x] Apple Pay - [x] Subaccounts -- [ ] Plans +- [x] Plans - [ ] Subscriptions - [ ] Transfer Recipients - [ ] Transfers