Dev branch rebase ( freeze feat, etc ) #448
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 Wayshot | |
on: [push, pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
rm Cargo.lock | |
cargo build --release | |
rustfmt: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Check formatting | |
run: | | |
cargo fmt -- --check | |
documentation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- 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 |