Skip to content

Commit

Permalink
feat: port tauri updater (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
amr-crabnebula authored Nov 20, 2023
1 parent ba92713 commit 8a7a295
Show file tree
Hide file tree
Showing 45 changed files with 3,518 additions and 563 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: integration tests

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
run-integration-tests:
runs-on: ${{ matrix.platform }}

strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v4
- name: install webkit2gtk
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y fuse libfuse2
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo test --test '*' -- --ignored --nocapture
Loading

0 comments on commit 8a7a295

Please sign in to comment.