Skip to content

Freedesktop: use ashpd for both sync & async implementations #93

Freedesktop: use ashpd for both sync & async implementations

Freedesktop: use ashpd for both sync & async implementations #93

Workflow file for this run

name: Rust
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Install dependencies
if: runner.os == 'Linux'
run: sudo apt install xdg-desktop-portal-gtk
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build_wasm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install wasm target
run: rustup target install wasm32-unknown-unknown
- name: Build
run: cargo build --target wasm32-unknown-unknown --verbose