1
0
Fork 0
mirror of https://github.com/subosito/flutter-action.git synced 2024-08-16 10:19:50 +02:00
This commit is contained in:
Koji Wakamiya 2024-05-02 00:27:45 +09:00 committed by GitHub
commit c46eeb2ac0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,7 +26,7 @@ jobs:
strategy: strategy:
matrix: matrix:
operating-system: operating-system:
[ubuntu-latest, windows-latest, macos-latest, macos-13, macos-14] [ubuntu-latest, windows-latest, macos-latest, macos-13]
channel: [stable, beta, master] channel: [stable, beta, master]
dry-run: [true, false] dry-run: [true, false]
include: include:
@ -53,16 +53,16 @@ jobs:
echo ARCHITECTURE=${{ steps.flutter-action.outputs.ARCHITECTURE }} echo ARCHITECTURE=${{ steps.flutter-action.outputs.ARCHITECTURE }}
shell: bash shell: bash
- run: dart --version - run: dart --version
if: ${{ matrix.dry-run != 'true' }} if: ${{ !matrix.dry-run }}
shell: bash shell: bash
- run: flutter --version - run: flutter --version
if: ${{ matrix.dry-run != 'true' }} if: ${{ !matrix.dry-run }}
shell: bash shell: bash
- run: "! dart --version" - run: "! dart --version"
if: ${{ matrix.dry-run == 'true' }} if: ${{ matrix.dry-run }}
shell: bash shell: bash
- run: "! flutter --version" - run: "! flutter --version"
if: ${{ matrix.dry-run == 'true' }} if: ${{ matrix.dry-run }}
shell: bash shell: bash
test_cache: test_cache:
@ -71,7 +71,7 @@ jobs:
strategy: strategy:
matrix: matrix:
operating-system: operating-system:
[ubuntu-latest, windows-latest, macos-latest, macos-13, macos-14] [ubuntu-latest, windows-latest, macos-latest, macos-13]
steps: steps:
- name: Clone repository - name: Clone repository
@ -108,7 +108,7 @@ jobs:
shell: bash shell: bash
test_print_output: test_print_output:
runs-on: macos-latest runs-on: macos-13
steps: steps:
- name: Clone repository - name: Clone repository