Skip to content

Merge pull request #20 from terhechte/feat/linux_menus #22

Merge pull request #20 from terhechte/feat/linux_menus

Merge pull request #20 from terhechte/feat/linux_menus #22

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, windows-2019, ubuntu-latest]
include:
- os: ubuntu-latest
command: sudo apt-get update && sudo apt-get install pkg-config libssl-dev libgtk-3-dev xdotool libxdo-dev libwebkit2gtk-4.1-dev libgtk-3-0 libgtk-3-dev
steps:
- uses: actions/checkout@v2
- run: ${{ matrix.command }}
- name: Build
run: cargo build --verbose
- name: Check
run: cargo check --verbose
- name: Run tests
run: cargo test --verbose