Skip to content

Federation

Federation #142

Workflow file for this run

# SPDX-FileCopyrightText: 2023 Phoenix R&D GmbH <[email protected]>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
name: Rust
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: "3.x"
channel: "stable"
cache: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Set up bridge
run: cd coreclient/dart-bridge && make setup-ci
- name: Build bridge
run: cd coreclient && cargo build --verbose --features dart-bridge