Skip to content

feat: enable refresh & reset through cli #8

feat: enable refresh & reset through cli

feat: enable refresh & reset through cli #8

Workflow file for this run

name: Test
on:
pull_request:
merge_group:
push:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Set Rust caching env vars
run: |
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
- run: rustup component add rustfmt clippy
- run: rustc --version
- run: cargo fmt --all --check
- run: cargo clippy -- -D warnings
- run: cargo test