Remove references to zebra state from tiny-cash and use local state instead #12
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 | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
SCCACHE_GHA_ENABLED: "true" | |
RUSTC_WRAPPER: "sccache" | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v3 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Run sccache-cache | |
uses: mozilla-actions/sccache-action@v0.0.3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup protoc | |
uses: arduino/setup-protoc@v1.1.2 | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --all | |
lints: | |
name: fmt check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v3 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Run sccache-cache | |
uses: mozilla-actions/sccache-action@v0.0.3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup protoc | |
uses: arduino/setup-protoc@v1.1.2 | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all --check |