Skip to content

Reflect changes to cli update #31

Reflect changes to cli update

Reflect changes to cli update #31

Workflow file for this run

# Created with package:mono_repo v6.6.1
name: Dart CI
on:
push:
branches:
- main
- master
pull_request:
defaults:
run:
shell: bash
env:
PUB_ENVIRONMENT: bot.github
permissions: read-all
jobs:
job_001:
name: mono_repo self validate
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: stable
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- name: mono_repo self validate
run: dart pub global activate mono_repo 6.6.1
- name: mono_repo self validate
run: dart pub global run mono_repo generate --validate
job_002:
name: "analyze; Dart 3.0.0; PKG: pheasant_temp; `dart analyze`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:pheasant_temp;commands:analyze"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:pheasant_temp
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: "3.0.0"
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_temp_pub_upgrade
name: pheasant_temp; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_temp
- name: pheasant_temp; dart analyze
run: dart analyze
if: "always() && steps.pheasant_temp_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_temp
job_003:
name: "analyze; Dart 3.0.0; PKG: pheasant_temp; `dart format --output=none --set-exit-if-changed .`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:pheasant_temp;commands:format"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:pheasant_temp
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: "3.0.0"
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_temp_pub_upgrade
name: pheasant_temp; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_temp
- name: "pheasant_temp; dart format --output=none --set-exit-if-changed ."
run: "dart format --output=none --set-exit-if-changed ."
if: "always() && steps.pheasant_temp_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_temp
job_004:
name: "analyze; Dart 3.2.3; PKG: pheasant_assets; `dart analyze`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3;packages:pheasant_assets;commands:analyze"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3;packages:pheasant_assets
os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: "3.2.3"
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_assets_pub_upgrade
name: pheasant_assets; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_assets
- name: pheasant_assets; dart analyze
run: dart analyze
if: "always() && steps.pheasant_assets_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_assets
job_005:
name: "analyze; Dart 3.2.3; PKG: pheasant_cli; `dart analyze`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3;packages:pheasant_cli;commands:analyze"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3;packages:pheasant_cli
os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: "3.2.3"
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_cli_pub_upgrade
name: pheasant_cli; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_cli
- name: pheasant_cli; dart analyze
run: dart analyze
if: "always() && steps.pheasant_cli_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_cli
job_006:
name: "analyze; Dart 3.2.3; PKG: pheasant_assets; `dart format --output=none --set-exit-if-changed .`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3;packages:pheasant_assets;commands:format"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3;packages:pheasant_assets
os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: "3.2.3"
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_assets_pub_upgrade
name: pheasant_assets; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_assets
- name: "pheasant_assets; dart format --output=none --set-exit-if-changed ."
run: "dart format --output=none --set-exit-if-changed ."
if: "always() && steps.pheasant_assets_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_assets
job_007:
name: "analyze; Dart 3.2.3; PKG: pheasant_cli; `dart format --output=none --set-exit-if-changed .`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3;packages:pheasant_cli;commands:format"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3;packages:pheasant_cli
os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: "3.2.3"
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_cli_pub_upgrade
name: pheasant_cli; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_cli
- name: "pheasant_cli; dart format --output=none --set-exit-if-changed ."
run: "dart format --output=none --set-exit-if-changed ."
if: "always() && steps.pheasant_cli_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_cli
job_008:
name: "analyze; Dart dev; PKG: pheasant_assets; `dart analyze`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_assets;commands:analyze"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_assets
os:ubuntu-latest;pub-cache-hosted;sdk:dev
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: dev
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_assets_pub_upgrade
name: pheasant_assets; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_assets
- name: pheasant_assets; dart analyze
run: dart analyze
if: "always() && steps.pheasant_assets_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_assets
job_009:
name: "analyze; Dart dev; PKG: pheasant_cli; `dart analyze`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_cli;commands:analyze"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_cli
os:ubuntu-latest;pub-cache-hosted;sdk:dev
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: dev
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_cli_pub_upgrade
name: pheasant_cli; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_cli
- name: pheasant_cli; dart analyze
run: dart analyze
if: "always() && steps.pheasant_cli_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_cli
job_010:
name: "analyze; Dart dev; PKG: pheasant_temp; `dart analyze`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_temp;commands:analyze"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_temp
os:ubuntu-latest;pub-cache-hosted;sdk:dev
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: dev
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_temp_pub_upgrade
name: pheasant_temp; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_temp
- name: pheasant_temp; dart analyze
run: dart analyze
if: "always() && steps.pheasant_temp_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_temp
job_011:
name: "analyze; Dart dev; PKG: pheasant_assets; `dart format --output=none --set-exit-if-changed .`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_assets;commands:format"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_assets
os:ubuntu-latest;pub-cache-hosted;sdk:dev
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: dev
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_assets_pub_upgrade
name: pheasant_assets; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_assets
- name: "pheasant_assets; dart format --output=none --set-exit-if-changed ."
run: "dart format --output=none --set-exit-if-changed ."
if: "always() && steps.pheasant_assets_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_assets
job_012:
name: "analyze; Dart dev; PKG: pheasant_cli; `dart format --output=none --set-exit-if-changed .`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_cli;commands:format"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_cli
os:ubuntu-latest;pub-cache-hosted;sdk:dev
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: dev
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_cli_pub_upgrade
name: pheasant_cli; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_cli
- name: "pheasant_cli; dart format --output=none --set-exit-if-changed ."
run: "dart format --output=none --set-exit-if-changed ."
if: "always() && steps.pheasant_cli_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_cli
job_013:
name: "analyze; Dart dev; PKG: pheasant_temp; `dart format --output=none --set-exit-if-changed .`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_temp;commands:format"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_temp
os:ubuntu-latest;pub-cache-hosted;sdk:dev
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: dev
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_temp_pub_upgrade
name: pheasant_temp; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_temp
- name: "pheasant_temp; dart format --output=none --set-exit-if-changed ."
run: "dart format --output=none --set-exit-if-changed ."
if: "always() && steps.pheasant_temp_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_temp
job_014:
name: "unit_test; Dart 3.0.0; PKG: pheasant; `dart test`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:pheasant;commands:test"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:pheasant
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: "3.0.0"
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_pub_upgrade
name: pheasant; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant
- name: pheasant; dart test
run: dart test
if: "always() && steps.pheasant_pub_upgrade.conclusion == 'success'"
working-directory: pheasant
needs:
- job_001
- job_002
- job_003
- job_004
- job_005
- job_006
- job_007
- job_008
- job_009
- job_010
- job_011
- job_012
- job_013
job_015:
name: "unit_test; Dart 3.0.0; PKG: pheasant_build; `dart test`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:pheasant_build;commands:test"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:pheasant_build
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: "3.0.0"
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_build_pub_upgrade
name: pheasant_build; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_build
- name: pheasant_build; dart test
run: dart test
if: "always() && steps.pheasant_build_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_build
needs:
- job_001
- job_002
- job_003
- job_004
- job_005
- job_006
- job_007
- job_008
- job_009
- job_010
- job_011
- job_012
- job_013
job_016:
name: "unit_test; Dart 3.0.0; PKG: pheasant_meta; `dart test`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:pheasant_meta;commands:test"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:pheasant_meta
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: "3.0.0"
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_meta_pub_upgrade
name: pheasant_meta; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_meta
- name: pheasant_meta; dart test
run: dart test
if: "always() && steps.pheasant_meta_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_meta
needs:
- job_001
- job_002
- job_003
- job_004
- job_005
- job_006
- job_007
- job_008
- job_009
- job_010
- job_011
- job_012
- job_013
job_017:
name: "unit_test; Dart 3.0.0; PKG: pheasant_temp; `dart test`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:pheasant_temp;commands:test"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:pheasant_temp
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: "3.0.0"
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_temp_pub_upgrade
name: pheasant_temp; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_temp
- name: pheasant_temp; dart test
run: dart test
if: "always() && steps.pheasant_temp_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_temp
needs:
- job_001
- job_002
- job_003
- job_004
- job_005
- job_006
- job_007
- job_008
- job_009
- job_010
- job_011
- job_012
- job_013
job_018:
name: "unit_test; Dart 3.2.3; PKG: pheasant_assets; `dart test`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3;packages:pheasant_assets;commands:test"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3;packages:pheasant_assets
os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: "3.2.3"
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_assets_pub_upgrade
name: pheasant_assets; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_assets
- name: pheasant_assets; dart test
run: dart test
if: "always() && steps.pheasant_assets_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_assets
needs:
- job_001
- job_002
- job_003
- job_004
- job_005
- job_006
- job_007
- job_008
- job_009
- job_010
- job_011
- job_012
- job_013
job_019:
name: "unit_test; Dart 3.2.3; PKG: pheasant_cli; `dart test`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3;packages:pheasant_cli;commands:test"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3;packages:pheasant_cli
os:ubuntu-latest;pub-cache-hosted;sdk:3.2.3
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: "3.2.3"
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_cli_pub_upgrade
name: pheasant_cli; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_cli
- name: pheasant_cli; dart test
run: dart test
if: "always() && steps.pheasant_cli_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_cli
needs:
- job_001
- job_002
- job_003
- job_004
- job_005
- job_006
- job_007
- job_008
- job_009
- job_010
- job_011
- job_012
- job_013
job_020:
name: "unit_test; Dart dev; PKG: pheasant; `dart test`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant;commands:test"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant
os:ubuntu-latest;pub-cache-hosted;sdk:dev
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: dev
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_pub_upgrade
name: pheasant; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant
- name: pheasant; dart test
run: dart test
if: "always() && steps.pheasant_pub_upgrade.conclusion == 'success'"
working-directory: pheasant
needs:
- job_001
- job_002
- job_003
- job_004
- job_005
- job_006
- job_007
- job_008
- job_009
- job_010
- job_011
- job_012
- job_013
job_021:
name: "unit_test; Dart dev; PKG: pheasant_assets; `dart test`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_assets;commands:test"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_assets
os:ubuntu-latest;pub-cache-hosted;sdk:dev
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: dev
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_assets_pub_upgrade
name: pheasant_assets; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_assets
- name: pheasant_assets; dart test
run: dart test
if: "always() && steps.pheasant_assets_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_assets
needs:
- job_001
- job_002
- job_003
- job_004
- job_005
- job_006
- job_007
- job_008
- job_009
- job_010
- job_011
- job_012
- job_013
job_022:
name: "unit_test; Dart dev; PKG: pheasant_build; `dart test`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_build;commands:test"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_build
os:ubuntu-latest;pub-cache-hosted;sdk:dev
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: dev
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_build_pub_upgrade
name: pheasant_build; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_build
- name: pheasant_build; dart test
run: dart test
if: "always() && steps.pheasant_build_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_build
needs:
- job_001
- job_002
- job_003
- job_004
- job_005
- job_006
- job_007
- job_008
- job_009
- job_010
- job_011
- job_012
- job_013
job_023:
name: "unit_test; Dart dev; PKG: pheasant_cli; `dart test`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_cli;commands:test"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_cli
os:ubuntu-latest;pub-cache-hosted;sdk:dev
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: dev
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_cli_pub_upgrade
name: pheasant_cli; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_cli
- name: pheasant_cli; dart test
run: dart test
if: "always() && steps.pheasant_cli_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_cli
needs:
- job_001
- job_002
- job_003
- job_004
- job_005
- job_006
- job_007
- job_008
- job_009
- job_010
- job_011
- job_012
- job_013
job_024:
name: "unit_test; Dart dev; PKG: pheasant_meta; `dart test`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_meta;commands:test"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_meta
os:ubuntu-latest;pub-cache-hosted;sdk:dev
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: dev
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_meta_pub_upgrade
name: pheasant_meta; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_meta
- name: pheasant_meta; dart test
run: dart test
if: "always() && steps.pheasant_meta_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_meta
needs:
- job_001
- job_002
- job_003
- job_004
- job_005
- job_006
- job_007
- job_008
- job_009
- job_010
- job_011
- job_012
- job_013
job_025:
name: "unit_test; Dart dev; PKG: pheasant_temp; `dart test`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_temp;commands:test"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:pheasant_temp
os:ubuntu-latest;pub-cache-hosted;sdk:dev
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: dev
- id: checkout
name: Checkout repository
uses: actions/checkout@v4
- id: pheasant_temp_pub_upgrade
name: pheasant_temp; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: pheasant_temp
- name: pheasant_temp; dart test
run: dart test
if: "always() && steps.pheasant_temp_pub_upgrade.conclusion == 'success'"
working-directory: pheasant_temp
needs:
- job_001
- job_002
- job_003
- job_004
- job_005
- job_006
- job_007
- job_008
- job_009
- job_010
- job_011
- job_012
- job_013