use checksum for install rsync #276
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: Rust Build | |
on: | |
push: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache rust target files | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-rust-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install sass | |
run: sudo npm install -g sass | |
- name: Run tests | |
run: cargo test --verbose --all-targets --locked | |
- name: Clippy | |
run: cargo clippy --verbose --no-deps --all-targets --locked | |
- name: Build | |
run: cargo build --bin=server --release --locked --verbose | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-output | |
path: | | |
target/release/server | |
public/ | |
if-no-files-found: error |