mirror of
https://github.com/subosito/flutter-action.git
synced 2024-08-16 10:19:50 +02:00
.github/workflows | ||
__tests__ | ||
lib | ||
node_modules | ||
scripts/externals | ||
src | ||
.gitignore | ||
.prettierrc.json | ||
action.yml | ||
jest.config.js | ||
LICENSE | ||
package-lock.json | ||
package.json | ||
README.md | ||
tsconfig.json |
flutter-action
This action sets up a flutter environment for use in actions. It works on Linux, Windows, and macOS.
Usage
steps:
- uses: actions/checkout@master
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1.0.1
with:
version: '1.7.8+hotfix.4'
- run: flutter pub get
- run: flutter test
- run: flutter build apk
Matrix Testing:
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@master
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1.0.1
with:
version: '1.7.8+hotfix.4'
- run: flutter pub get
- run: flutter test
- run: flutter build apk