Skip to content

Support 3D Piece Sets #6849

Support 3D Piece Sets

Support 3D Piece Sets #6849

Workflow file for this run

name: Tests
on:
push:
paths:
- 'lib/**'
- '!lib/l10n/**'
- 'test/**'
- 'pubspec.yaml'
branches:
- main
pull_request:
paths:
- 'lib/**'
- '!lib/l10n/**'
- 'test/**'
- 'pubspec.yaml'
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@v6.0.3
- name: 🐦 Install flutter
uses: subosito/flutter-action@v2.23.0
with:
cache: true
flutter-version-file: pubspec.yaml
- 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