Add heya filter dropdown to basho page #228
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: Rust build, test and clippy | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.5.2 | |
- name: Cache rust target files | |
uses: actions/cache@v3.3.1 | |
with: | |
path: target | |
key: ${{ runner.os }}-rust-target | |
- run: sudo npm install -g sass | |
- name: Check | |
run: cargo check --verbose --all-targets --locked | |
- name: Run tests | |
run: cargo test --verbose | |
- name: Clippy | |
run: cargo clippy --verbose --no-deps --all-targets --locked |