Skip to content

update

update #23

Workflow file for this run

name: Testing
on:
workflow_dispatch:
push:
branches:
- main
paths:
- setup.sh
- action.yaml
- .github/workflows/test.yaml
jobs:
general-developer-action-test:
name: General Developer Action Test
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
include:
# check done
- os: macos-latest # build macos
- os: ubuntu-24.04 # build android
- os: windows-latest # build windows
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
path: general-developer-action
- name: General Developer Action
uses: ./general-developer-action
with:
flutter_channel: stable
flutter_version: 3.29.0
is_use_cache: true
flutter_cache_key: "test-flutter-path-${{ runner.os }}-3.29.0"
flutter_pub_cache_key: "test-flutter-pub-cache-${{ runner.os }}-3.29.0"
- name: Flutter Version
run: |
flutter --version