Skip to content

(WIP) content: Double-size emoji-only paragraphs. #14

(WIP) content: Double-size emoji-only paragraphs.

(WIP) content: Double-size emoji-only paragraphs. #14

Workflow file for this run

name: CI
on: [push, pull_request]
permissions:
contents: read
jobs:
check:
name: "analyze, test, generate"
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Install system dependencies
run: TERM=dumb sudo apt install libsqlite3-dev -y
- name: Clone Flutter SDK
run: tools/ci/clone-flutter-sdk
- name: Download Flutter SDK artifacts (flutter precache)
run: flutter precache --universal
- name: Download our dependencies (flutter pub get)
run: flutter pub get
- name: Run tools/check
run: TERM=dumb tools/check --no-pub --all --output ci --exclude android
android:
name: "Android build and lint"
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Set up JDK
uses: actions/setup-java@v5
with:
java-version: 17
distribution: temurin
- name: Clone Flutter SDK
run: tools/ci/clone-flutter-sdk
- name: Download Flutter SDK artifacts (flutter precache)
run: flutter precache --universal
- name: Download our dependencies (flutter pub get)
run: flutter pub get
- name: Run tools/check
run: TERM=dumb tools/check --all --output ci android