Skip to content

Upgraded hosted dependencies (jni plugins are broken in this commit). #66

Upgraded hosted dependencies (jni plugins are broken in this commit).

Upgraded hosted dependencies (jni plugins are broken in this commit). #66

Workflow file for this run

name: package:libmonet
permissions: read-all
on:
push:
branches:
- main
defaults:
run:
working-directory: packages/libmonet
jobs:
# analyze:
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# channel: [stable, master]
# steps:
# - uses: actions/checkout@v5
# - uses: subosito/flutter-action@v2
# with:
# channel: ${{ matrix.channel }}
# cache: true
# - id: install
# run: flutter pub get
# - name: Check formatting
# run: dart format --output=none --set-exit-if-changed .
# if: always() && steps.install.outcome == 'success'
# - run: flutter analyze --fatal-infos .
# if: always() && steps.install.outcome == 'success'
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
channel: [stable, master]
steps:
- uses: actions/checkout@v5
- uses: subosito/flutter-action@v2
with:
channel: ${{ matrix.channel }}
cache: true
- id: install
run: flutter pub get
- run: flutter test
if: always() && steps.install.outcome == 'success'