Skip to content

more gracefully handle memos that dont parse #87

more gracefully handle memos that dont parse

more gracefully handle memos that dont parse #87

Workflow file for this run

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/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup protoc
uses: arduino/[email protected]
- 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/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup protoc
uses: arduino/[email protected]
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all --check