Skip to content

Commit

Permalink
ci: run Matrix integraation test on macOS runner
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasn committed Apr 6, 2024
1 parent 462fbda commit 200bb4b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/flutter-matrix-test_mac.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Flutter Matrix Test macOS

on:
push:
branches:
- '**'

jobs:
test:
name: Flutter Matrix Test on macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Set up Docker
uses: crazy-max/ghaction-setup-docker@v3
env:
LIMA_START_ARGS: --cpus 4 --memory 8
- uses: kuhnroyal/flutter-fvm-config-action@v2
id: fvm-config-action
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }}
channel: ${{ steps.fvm-config-action.outputs.FLUTTER_CHANNEL }}
- uses: hoverkraft-tech/compose-action@v2.0.0
with:
cwd: "integration_test/docker"
- name: Run Matrix integration test
uses: GabrielBB/xvfb-action@v1.6
with:
working-directory: ./integration_test
run: ./run_matrix_tests.sh

0 comments on commit 200bb4b

Please sign in to comment.