Skip to content

Bumped compileSdkVersion to 33 #94

Bumped compileSdkVersion to 33

Bumped compileSdkVersion to 33 #94

Workflow file for this run

# GitHub Actions workflow for the flutter_snowboy repository
name: tests
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches:
- '*'
pull_request:
branches:
- '*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11.0.19+7'
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.10.0'
channel: 'stable'
- run: flutter config --no-analytics
- run: flutter --disable-telemetry
- run: flutter pub get --suppress-analytics
- run: dart analyze lib example/lib
- run: flutter test
- run: |
cd example
flutter build apk
- name: Slack notification
uses: 8398a7/action-slack@v2
with:
status: ${{ job.status }}
author_name: Integration Testing
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required
if: failure() # Pick up event if the job fails