Use portals by default #149
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
# https://github.com/EmbarkStudios/cargo-deny | |
# To run locally: `cargo install cargo-deny && cargo deny check` | |
name: cargo-deny | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Ubuntu GTK | |
target: x86_64-unknown-linux-gnu | |
flags: "--no-default-features --features gtk3" | |
- name: Ubuntu XDG | |
target: x86_64-unknown-linux-gnu | |
flags: "--no-default-features --features xdg-portal --exclude syn" | |
- name: Windows | |
target: x86_64-pc-windows-msvc | |
flags: "" | |
- name: Windows CC6 | |
target: x86_64-pc-windows-msvc | |
flags: "--features common-controls-v6" | |
- name: macOS | |
target: x86_64-apple-darwin | |
flags: "" | |
- name: WASM32 | |
target: wasm32-unknown-unknown | |
flags: "" | |
name: ${{ matrix.name }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: EmbarkStudios/cargo-deny-action@v1 | |
with: | |
log-level: error | |
command: check | |
arguments: ${{ matrix.flags }} --target ${{ matrix.target }} |