Skip to content

Update build.yml

Update build.yml #9

Workflow file for this run

name: Build
on:
push:
branches:
- main
- development
pull_request:
branches:
- main
- development
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev
working-directory: ./frontend
- run: flutter build linux
working-directory: ./frontend