Skip to content

Add update and confirm PaymentIntent methods #75

Add update and confirm PaymentIntent methods

Add update and confirm PaymentIntent methods #75

Workflow file for this run

name: Dart CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-dart:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1.0
with:
sdk: 2.15.1
- name: Install dependencies
run: dart pub get
- name: Analyze code
run: dart analyze --fatal-infos --fatal-warnings
- name: Check code formatting
run: dart format -o none --set-exit-if-changed .
- name: Run tests
run: dart test