Skip to content

feat: Add new charge-related documentation and models #29

feat: Add new charge-related documentation and models

feat: Add new charge-related documentation and models #29

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
#
# This file is auto-generated by OpenAPI Generator (https://openapi-generator.tech)
name: dart CI
on:
pull_request:
branches: [ main, master ]
jobs:
test:
strategy:
matrix:
sdk: [2.18.0, 2.19.6, 3.0.7, 3.1.5, 3.2.6, 3.3.4]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.sdk }}
- uses: actions/setup-node@v2
- name: Run Mockoon CLI
uses: mockoon/cli-action@v1
with:
version: '6.0.1'
data-file: 'https://raw.githubusercontent.com/conekta/openapi/main/mocks/conekta_api.json'
port: 3000
- name: dart install, build and test
run: |
dart pub get
dart run build_runner clean && dart run build_runner build --delete-conflicting-outputs
dart run test
env:
BASE_PATH: http://localhost:3000