👷 merge build and lint, add debian package lint #1
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
name: Build debian package | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
workflow_call: | |
jobs: | |
lint-markdown: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Lint markdown files | |
uses: avto-dev/markdown-lint@v1.5.0 | |
with: | |
args: "**/*.md" | |
lint-yaml: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Lint yaml files | |
uses: ibiqlik/action-yamllint@v3.1.1 | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install -y libx11-dev xorg-dev libxdo-dev | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Cargo lint | |
run: cargo fmt --all -- --check | |
- name: Cargo test | |
run: cargo test | |
- name: Cargo build | |
run: cargo build --release | |
- name: Create and lint debian package | |
run: ./debian-build.sh --lint |