forked from loafle/openapi-generator-original
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
40 lines
922 B
YAML
40 lines
922 B
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@v4
|
|
- uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: 11
|
|
cache: maven
|
|
- name: Cache test dependencies
|
|
uses: actions/cache@v4
|
|
env:
|
|
cache-name: pub-cache
|
|
with:
|
|
path: $PUB_CACHE
|
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('samples/**/pubspec.*') }}
|
|
- uses: dart-lang/setup-dart@v1
|
|
with:
|
|
sdk: 2.15.0
|
|
- name: Run tests
|
|
uses: ./.github/actions/run-samples
|
|
with:
|
|
name: samples.dart
|