573 fix recommender readme again #1133
Workflow file for this run
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: Datalayer | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
defaults: | |
run: | |
working-directory: apps/data/datalayer | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/[email protected] | |
with: | |
components: clippy | |
- name: Lint | |
run: RUSTFLAGS="-Dwarnings" cargo clippy --all-targets --all-features | |
format: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/[email protected] | |
with: | |
components: rustfmt | |
- name: Format | |
run: cargo fmt --all -- --check | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/[email protected] | |
- name: Test | |
run: cargo test | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/[email protected] | |
- name: Build | |
run: cargo build | |
supply: | |
name: Supply Chain Security | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/[email protected] | |
- name: Install cargo-audit | |
run: cargo install cargo-audit --locked | |
- name: Scan | |
run: cargo audit |