Skip to content

chore(deps): bump json_serializable from 6.12.0 to 6.13.0 #77

chore(deps): bump json_serializable from 6.12.0 to 6.13.0

chore(deps): bump json_serializable from 6.12.0 to 6.13.0 #77

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
tags: ['v*']
pull_request:
branches: [main, master]
jobs:
build:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.24.0'
- name: Install Linux dependencies
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev liblzma-dev libstdc++-12-dev
- run: flutter pub get
- run: flutter test
- run: flutter build linux --release
if: matrix.platform == 'ubuntu-latest'
- run: flutter build macos --release
if: matrix.platform == 'macos-latest'
- run: flutter build windows --release
if: matrix.platform == 'windows-latest'