Skip to content

chore: Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 1.9.23 to 2.2.21 in /android #340

chore: Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 1.9.23 to 2.2.21 in /android

chore: Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 1.9.23 to 2.2.21 in /android #340

Workflow file for this run

name: Flutter SDK Unit Tests
permissions:
contents: read
# Leverages the Flutter GH Action at https://github.com/marketplace/actions/flutter-action
on:
pull_request:
branches: [main]
jobs:
build:
name: Unit Test
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Install and set Flutter version
uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 # v2.19.0
with:
flutter-version: "3.x"
channel: "stable"
- name: Install Flutter packages
run: flutter pub get
- name: Analyze
run: flutter analyze
- name: Run Unit Tests
run: flutter test
- name: Run Publish Dry Run
run: flutter pub publish --dry-run