mirror of
https://github.com/lichess-org/mobile.git
synced 2026-05-26 13:50:52 +00:00
49 lines
1.3 KiB
YAML
49 lines
1.3 KiB
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
# Declare default permissions as read only.
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
unit-test:
|
|
name: Unit tests on ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: subosito/flutter-action@v2
|
|
- run: flutter doctor -v
|
|
|
|
- name: Install requirements for sqflite_common_ffi package
|
|
run: sudo apt-get -y install libsqlite3-0 libsqlite3-dev
|
|
|
|
- name: Install dependencies
|
|
run: flutter pub get
|
|
|
|
- name: Code generation
|
|
run: dart run build_runner build
|
|
|
|
- name: Verify formatting
|
|
run: |
|
|
dart format --output=none --set-exit-if-changed $(find lib/src -name "*.dart" -not \( -name "*.*freezed.dart" -o -name "*.*g.dart" -o -name "*lichess_icons.dart" \) )
|
|
dart format --output=none --set-exit-if-changed $(find test -name "*.dart" -not \( -name "*.*freezed.dart" -o -name "*.*g.dart" \) )
|
|
# run: dart format --output=none --set-exit-if-changed .
|
|
|
|
- name: Analyze project source
|
|
run: flutter analyze
|
|
|
|
- name: Run riverpod lint
|
|
run: dart run custom_lint
|
|
|
|
- name: Run unit tests
|
|
run: flutter test
|
|
|