Skip to content

Feat/core

Feat/core #1

Workflow file for this run

name: "🟧 Backend"
on:
pull_request:
branches: [ dev ]
paths:
- 'src-tauri/**'
- 'crates/**'
- 'Cargo.*'
jobs:
check:
strategy:
fail-fast: false
matrix:
platform: [ ubuntu-20.04, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}