Skip to content

Add background, add packs to game #121

Add background, add packs to game

Add background, add packs to game #121

Workflow file for this run

name: Dart
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
projects: [app, tools]
defaults:
run:
working-directory: ${{ matrix.projects }}
steps:
- name: ⬆️ Checkout
uses: actions/checkout@v4
- name: Get flutter version
run: |
FLUTTER_VERSION=$(cat ../FLUTTER_VERSION)
echo "FLUTTER_VERSION=${FLUTTER_VERSION}" >> $GITHUB_ENV
- uses: subosito/[email protected]
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: 'master'
- uses: actions/checkout@v4
- name: Print Dart SDK version
run: |
dart --version
flutter --version
- name: Run generate
working-directory: ./
run: |
cd tools
dart pub get
cd ..
dart run tools/generate.dart
- name: Install dependencies
run: |
flutter pub get
# Uncomment this step to verify the use of 'dart format' on each commit.
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
# Consider passing '--fatal-infos' for slightly stricter analysis.
- name: Analyze project source
run: |
flutter analyze --fatal-infos
- name: Run build_runner
if: matrix.projects != 'tools'
run: flutter pub run build_runner build --delete-conflicting-outputs
- name: Test for git changes
run: git diff --exit-code
# Your project will need to have tests in test/ and a dependency on
# package:test for this step to succeed. Note that Flutter projects will
# want to change this to 'flutter test'.
# - name: Run tests
# run: flutter test