Files
Graphite/.github/workflows/library-raw-rs.yml
Elbert Ronnie 9d13a8f73b Raw-rs: Remove from workspace (#2066)
* Remove raw-rs from workspace

* Add feature blocking to reqwest

* Use release build to run the tests

* Split Raw-rs CI into a seperate workflow

* Fix cargo-deny check for Raw-rs

* Only run the CI if Raw-rs changes

* Enable clippy check for Raw-rs

* Add newline in clippy check

* Fixups

* Use ubuntu-latest

* Remove mold

* Install sccache

* Attempt 2

* Attempt 3

* Add emoji for consistency

---------

Co-authored-by: Keavon Chambers <keavon@keavon.com>
2024-10-25 14:44:45 -07:00

62 lines
1.3 KiB
YAML

name: "Library: Raw-rs"
on:
push:
branches:
- master
paths:
- "libraries/raw-rs/**"
pull_request:
branches:
- master
paths:
- "libraries/raw-rs/**"
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
CARGO_INCREMENTAL: 0
SCCACHE_DIR: /var/lib/github-actions/.cache
steps:
- name: 📥 Clone and checkout repository
uses: actions/checkout@v3
- name: 🦀 Install the latest Rust
run: |
echo "Initial system version:"
rustc --version
rustup update stable
echo "Latest updated version:"
rustc --version
- name: 📦 Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.6
- name: 🔬 Check Rust formatting
run: |
cd libraries/raw-rs
cargo fmt --all -- --check
- name: 🦀 Build Rust code
run: |
cd libraries/raw-rs
cargo build --release --all-features
- name: 🧪 Run Rust tests
run: |
cd libraries/raw-rs
cargo test --release --all-features
- name: 📈 Run sccache stat for check
shell: bash
run: sccache --show-stats