Skip to content

Update test-build.yml #5

Update test-build.yml

Update test-build.yml #5

Workflow file for this run

on: push
jobs:
test-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
channel: 'stable'
# Get flutter packages
- run: flutter pub get
# Build :D
- uses: actions/checkout@v4
- run: flutter build apk
- name: Upload Build
uses: actions/upload-artifact@v4
# Analyze our Dart code
- run: flutter analyze
# Run our tests
- run: flutter test