Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Made Additional Changes according Decode's PR Code #250

Made Additional Changes according Decode's PR Code

Made Additional Changes according Decode's PR Code #250

Workflow file for this run

name: Build Wayshot
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
container:
image: archlinux:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy rustfmt
- name: Install wayland dependencies
run: |
pacman -Syu --noconfirm egl-wayland egl-gbm wayland base-devel mesa pango cairo
- name: Build
run: |
rm Cargo.lock
cargo build --release
- name: Clippy check
run:
cargo clippy -- -D warnings
- name: Check test
run: |
cargo test --verbose
rustfmt:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check formatting
run: |
cargo fmt -- --check
documentation:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check docs
run: |
sudo apt update
sudo apt install --no-install-recommends scdoc
for file in $(find . -type f -iwholename "./docs/*.scd"); do scdoc < $file > /dev/null; done