Skip to content

Front end decoupling #398

Front end decoupling

Front end decoupling #398

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
# app:
#
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v4
# - name: Build & Lint
# run: rustup target add thumbv7em-none-eabihf && cd app && cargo clippy
#
station:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf libgtk-3-dev
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH
- name: Build & Lint
run: cd gs/station && cargo clippy --features full -- -D warnings
- name: Test
run: cd gs/station && cargo test --features full