Skip to content

mergeconflicts or something #303

mergeconflicts or something

mergeconflicts or something #303

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@v3
<<<<<<< HEAD

Check failure on line 19 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/rust.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
- name: Build & Lint
run: rustup target add thumbv7em-none-eabihf && cd app && cargo clippy -- -D warnings
=======
- name: Build
run: rustup target add thumbv7em-none-eabihf && cd app && cargo build
>>>>>>> 441ec3870e99a4435b7c6742938ceacc8c9d3b10
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
<<<<<<< HEAD
- name: Build & Lint
run: cd gs/station && cargo clippy --features full -- -D warnings
=======
- name: Build
run: cd gs/station && cargo build --features full
>>>>>>> 441ec3870e99a4435b7c6742938ceacc8c9d3b10
- name: Test
run: cd gs/station && cargo test --features full