style: route toggle #74
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test backend | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
paths-ignore: | |
- "*.md" | |
- "LICENSE" | |
pull_request: | |
branches: | |
- main | |
- dev | |
paths-ignore: | |
- "*.md" | |
- "LICENSE" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
runs-on: [self-hosted, Linux] | |
container: rust:1.73 | |
defaults: | |
run: | |
working-directory: ./src-tauri | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Debug | |
run: echo ${{ github.ref_name }} | |
- name: Cache | |
uses: Swatinem/rust-cache@v2 | |
- name: install linux deps | |
run: | | |
apt-get update | |
apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf libssl-dev unzip | |
- name: install protobuf compiler | |
run: | | |
PB_REL='https://github.com/protocolbuffers/protobuf/releases' | |
PB_VERSION='3.20.0' && curl -LO $PB_REL/download/v$PB_VERSION/protoc-$PB_VERSION-linux-x86_64.zip | |
unzip protoc-$PB_VERSION-linux-x86_64.zip bin/protoc include/google/* -d /usr/local | |
- name: Check format | |
run: | | |
rustup component add rustfmt | |
cargo fmt -- --check | |
- name: Run tests | |
run: cargo test --locked --no-fail-fast |