Skip to content

🔖 1.0.0-dev.21

🔖 1.0.0-dev.21 #205

Workflow file for this run

name: Runnable (stable)
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Analyze on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: dart --version
- run: flutter --version
- run: flutter pub get
- run: flutter test ./test/agent_dart_test.dart # This is the only test that's runnable on actions.
- run: dart pub publish --dry-run
if: github.repository == 'AstroxNetwork/agent_dart'