Skip to content

Merge pull request #40 from leancodepl/chore/add-gitattributes #6

Merge pull request #40 from leancodepl/chore/add-gitattributes

Merge pull request #40 from leancodepl/chore/add-gitattributes #6

name: leancode_kratos_client test
on:
push:
branches: [main]
tags-ignore: ['v*']
pull_request:
branches: [main]
jobs:
test:
name: Flutter ${{ matrix.channel }}${{ matrix.version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- version: 3.24.x
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: ${{ matrix.channel }}
cache: true
flutter-version: ${{ matrix.version }}
- name: Flutter version
run: flutter --version
- name: Download pub dependencies
run: flutter pub get
- name: Run analyzer
run: flutter analyze
- name: Dry run pub publish
# We don't want it to fail the CI, it's just to see how would `pub publish` behave.
run: flutter pub publish --dry-run || true