mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-07-02 21:50:55 +00:00
* [dart] Cleanup unused/redundant stuff * [dart] Bump Dio to 5.0.0 * Fix description * Get tests to run based with git dependency * Fix test generation * Update docs * Update test dependencies * Use released version of http_mock_adapter
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
name: Samples Dart
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- '[5-9]+.[0-9]+.x'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- '[5-9]+.[0-9]+.x'
|
|
paths:
|
|
- 'samples/openapi3/client/petstore/dart*/**'
|
|
|
|
jobs:
|
|
tests-dart:
|
|
name: Tests Dart
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-java@v3
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: 8
|
|
- name: Cache maven dependencies
|
|
uses: actions/cache@v3
|
|
env:
|
|
cache-name: maven-repository
|
|
with:
|
|
path: |
|
|
~/.m2/repository
|
|
~/.gradle
|
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
|
- name: Cache test dependencies
|
|
uses: actions/cache@v3
|
|
env:
|
|
cache-name: pub-cache
|
|
with:
|
|
path: $PUB_CACHE
|
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('samples/**/pubspec.yaml') }}
|
|
- uses: dart-lang/setup-dart@v1
|
|
with:
|
|
sdk: 2.15.0
|
|
- name: Run tests
|
|
uses: ./.github/actions/run-samples
|
|
with:
|
|
name: samples.dart
|