initial ci
Some checks failed
Build CI / Build (push) Failing after 3m37s

This commit is contained in:
2026-02-08 11:14:52 +05:30
parent e1be0429bd
commit 27c64a631a

View File

@@ -0,0 +1,34 @@
name: Build CI
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
channel: master
- name: Install deps
run: sudo apt-get update -y && sudo apt install -y ninja-build libgtk-3-dev
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
channel: master
flutter-version-file: pubspec.yaml
- name: Get dependencies
run: flutter pub get
# - name: Analyze project
# run: flutter analyze
# - name: Test project
# run: flutter test
- name: Build Web Release
run: flutter build linux