Skip to content

Use pipx instead of manually calling setup.py #41

Use pipx instead of manually calling setup.py

Use pipx instead of manually calling setup.py #41

Workflow file for this run

name: Test App
on:
push:
branches:
- main
jobs:
build:
if: ${{ !startsWith(github.event.head_commit.message, '[doc]') }}
name: Build the library
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain none -y
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
libwebkit2gtk-4.0-dev \
build-essential \
curl \
wget \
libssl-dev \
libgtk-3-dev \
libayatana-appindicator3-dev \
librsvg2-dev
- run: npm install
working-directory: app
- run: npm run tauri build -- --debug
working-directory: app