Skip to content

Commit

Permalink
frontend/feat: Added Flutter workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Vignesh-772 committed Apr 29, 2024
1 parent 47187c2 commit e4a8552
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Rust

on: [pull_request]
on:
pull_request:
paths:
- 'Backend/**'

env:
CARGO_TERM_COLOR: always
Expand All @@ -10,9 +13,7 @@ permissions:

jobs:
build:

runs-on: ubuntu-latest

runs-on: self-hosted
defaults:
run:
working-directory: Backend/
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/cross_native.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Dart

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest

defaults:
run:
working-directory: Frontend/cross_native/
steps:
- uses: actions/checkout@v3
- name: Flutter action
uses: subosito/[email protected]
with:
channel: stable
- run: flutter build apk

0 comments on commit e4a8552

Please sign in to comment.