Made Additional Changes according Decode's PR Code #250
This file contains hidden or 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 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 |