Skip to content

feat(payment_methods_v2): Payment method Create API (#5812) #5149

feat(payment_methods_v2): Payment method Create API (#5812)

feat(payment_methods_v2): Payment method Create API (#5812) #5149

Workflow file for this run

name: CI-push
on:
push:
branches:
- main
# paths:
# - ".github/workflows/**"
# - "crates/**"
# - "examples/**"
# - "Cargo.lock"
# - "Cargo.toml"
merge_group:
types:
- checks_requested
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
formatting:
name: Check formatting
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: rustfmt
- name: Check formatting
shell: bash
run: cargo +nightly fmt --all --check
check-msrv:
name: Check compilation on MSRV toolchain
runs-on: ${{ matrix.runner }}
env:
RUSTFLAGS: "-D warnings"
strategy:
fail-fast: true
matrix:
runner:
- ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install mold linker
uses: rui314/setup-mold@v1
if: ${{ runner.os == 'Linux' }}
with:
make-default: true
- name: Get rust version from Cargo.toml
shell: bash
run: |
rust_version=$(yq -oy '.workspace.package.rust-version' Cargo.toml)
echo "rust_version=${rust_version}" >> $GITHUB_ENV
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: "${{ env.rust_version }}"
- uses: Swatinem/rust-cache@v2.7.0
with:
save-if: ${{ github.event_name == 'push' }}
- name: Install cargo-hack
uses: baptiste0928/cargo-install@v2.2.0
with:
crate: cargo-hack
- name: Install just
uses: taiki-e/install-action@v2.41.10
with:
tool: just
checksum: true
- name: Install jq
shell: bash
run: .github/scripts/install-jq.sh
- name: Cargo hack
if: ${{ github.event_name == 'push' }}
shell: bash
run: just ci_hack
- name: Cargo build release
if: ${{ github.event_name == 'merge_group' }}
shell: bash
run: cargo check --features "release"
# cargo-deny:
# name: Run cargo-deny
# runs-on: ubuntu-latest
# strategy:
# matrix:
# checks:
# - advisories
# - bans licenses sources
# # Prevent sudden announcement of a new advisory from failing CI
# continue-on-error: ${{ matrix.checks == 'advisories' }}
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
# - name: Run cargo-deny
# uses: EmbarkStudios/cargo-deny-action@v1.3.2
# with:
# command: check ${{ matrix.checks }}
test:
name: Run tests on stable toolchain
runs-on: ${{ matrix.runner }}
env:
RUSTFLAGS: "-D warnings"
strategy:
fail-fast: true
matrix:
runner:
- ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install mold linker
uses: rui314/setup-mold@v1
if: ${{ runner.os == 'Linux' }}
with:
make-default: true
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable 2 weeks ago
components: clippy
- name: Install cargo-hack
uses: baptiste0928/cargo-install@v2.2.0
with:
crate: cargo-hack
- name: Install just
uses: taiki-e/install-action@v2.41.10
with:
tool: just
checksum: true
- name: Install jq
shell: bash
run: .github/scripts/install-jq.sh
# - name: Install cargo-nextest
# uses: baptiste0928/cargo-install@v2.2.0
# with:
# crate: cargo-nextest
- uses: Swatinem/rust-cache@v2.7.0
with:
save-if: ${{ github.event_name == 'push' }}
- name: Run clippy
shell: bash
run: just clippy
- name: Cargo hack
if: ${{ github.event_name == 'push' }}
shell: bash
run: just ci_hack
- name: Cargo build release
if: ${{ github.event_name == 'merge_group' }}
shell: bash
run: cargo check --features "release"
typos:
name: Spell check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Spell check
uses: crate-ci/typos@master
check-v2:
name: Check compilation for V2 features
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install mold linker
uses: rui314/setup-mold@v1
if: ${{ runner.os == 'Linux' }}
with:
make-default: true
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable 2 weeks ago
- name: Install rust cache
uses: Swatinem/rust-cache@v2.7.0
- name: Run cargo check enabling only the release and v2 features
shell: bash
run: cargo check --no-default-features --features "release,v2"