From ee44dd75b11339e844d1168c0faba8e3de7a24c4 Mon Sep 17 00:00:00 2001 From: Alexander Emelin Date: Tue, 16 Jan 2024 22:52:30 +0200 Subject: [PATCH] try different sdks --- .github/workflows/ci.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d3ea12a..e798fb9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,9 +8,15 @@ jobs: if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository environment: test_ci runs-on: ubuntu-latest + strategy: + matrix: + sdk: [2.19, stable, beta] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 + - uses: dart-lang/setup-dart@v1 + with: + sdk: ${{ matrix.sdk }} - name: Install dependencies run: dart pub get