From d97c38e97db7a24bc6d2e3f8fb2cda7c88af10d9 Mon Sep 17 00:00:00 2001 From: Bartek Pacia Date: Wed, 18 Mar 2026 17:00:36 +0100 Subject: [PATCH] add a CI job that checks out a specific master commit (#391) --- .github/workflows/workflow.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml index d93b6c5..42c0519 100644 --- a/.github/workflows/workflow.yaml +++ b/.github/workflows/workflow.yaml @@ -115,6 +115,35 @@ jobs: run: flutter --version | grep '3.3.10' shell: bash + test_master_version: + runs-on: ${{ matrix.operating-system }} + + strategy: + matrix: + operating-system: [ubuntu-latest, macos-latest] + + steps: + - name: Clone repository + uses: actions/checkout@v6 + - id: flutter-action + uses: ./ + with: + channel: master + flutter-version: e6ed6e9e16782a24a912e79d3100c496600aae5b # some commit made on 18/03/2026 + - name: Echo outputs + run: | + echo RUNNER-OS=${{ runner.os }} + echo RUNNER-ARCH=${{ runner.arch }} + + echo CACHE-PATH=${{ steps.flutter-action.outputs.CACHE-PATH }} + echo CACHE-KEY=${{ steps.flutter-action.outputs.CACHE-KEY }} + echo CHANNEL=${{ steps.flutter-action.outputs.CHANNEL }} + echo VERSION=${{ steps.flutter-action.outputs.VERSION }} + echo ARCHITECTURE=${{ steps.flutter-action.outputs.ARCHITECTURE }} + shell: bash + - run: flutter --version + shell: bash + test_print_output_x64: runs-on: ubuntu-latest