From e5aa363d784412cac1c384fa37180c3721050627 Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Sun, 14 Jan 2024 12:17:22 +0100 Subject: [PATCH] ci --- .github/workflows/run_ci.yml | 17 ++++++++++++++--- .github/workflows/run_ci_downgrade_analyze.yml | 7 ++++--- app/lib/common_utils_import.dart | 1 + 3 files changed, 19 insertions(+), 6 deletions(-) create mode 100644 app/lib/common_utils_import.dart diff --git a/.github/workflows/run_ci.yml b/.github/workflows/run_ci.yml index da48738..e3bbcd1 100644 --- a/.github/workflows/run_ci.yml +++ b/.github/workflows/run_ci.yml @@ -7,7 +7,7 @@ on: jobs: test: - name: Test on ${{ matrix.os }} / ${{ matrix.dart }} + name: Test on ${{ matrix.os }} / dart ${{ matrix.dart }} runs-on: ${{ matrix.os }} defaults: run: @@ -15,8 +15,19 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - dart: [3.0.5, stable, beta, dev] + include: + - os: ubuntu-latest + dart: 3.0.5 + - os: ubuntu-latest + dart: stable + - os: ubuntu-latest + dart: beta + - os: ubuntu-latest + dart: dev + - os: windows-latest + dart: stable + - os: macos-latest + dart: stable steps: - uses: actions/checkout@v4 - uses: dart-lang/setup-dart@v1.4 diff --git a/.github/workflows/run_ci_downgrade_analyze.yml b/.github/workflows/run_ci_downgrade_analyze.yml index 0b2957e..d621df9 100644 --- a/.github/workflows/run_ci_downgrade_analyze.yml +++ b/.github/workflows/run_ci_downgrade_analyze.yml @@ -8,7 +8,7 @@ on: jobs: test: - name: Test on ${{ matrix.os }} / ${{ matrix.dart }} + name: Test on ${{ matrix.os }} / dart ${{ matrix.dart }} runs-on: ${{ matrix.os }} defaults: run: @@ -16,8 +16,9 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest] - dart: [stable] + include: + - os: ubuntu-latest + dart: stable steps: - uses: actions/checkout@v4 - uses: dart-lang/setup-dart@v1.4 diff --git a/app/lib/common_utils_import.dart b/app/lib/common_utils_import.dart new file mode 100644 index 0000000..60aa120 --- /dev/null +++ b/app/lib/common_utils_import.dart @@ -0,0 +1 @@ +export 'package:tekartik_common_utils/common_utils_import.dart';