Skip to content

feat: show info on how to enable the daemon if it is not running #409

feat: show info on how to enable the daemon if it is not running

feat: show info on how to enable the daemon if it is not running #409

Workflow file for this run

name: Rust
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
build-test:
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Update repos
run: sudo apt update
- name: Install dependencies
run: sudo apt install libgtk-4-dev pkg-config libvulkan-dev libdrm-dev
- name: Build
run: cargo build
- name: Run tests
run: cargo test --verbose --no-default-features
check-format:
runs-on: ubuntu-22.04
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
steps:
- uses: actions/checkout@v2
- name: install rustfmt
run: rustup component add rustfmt
- name: Check formatting
run: cargo fmt -- --check