Skip to content

Fixed FromAsCasing: 'as' and 'FROM' keywords' casing do not match #2

Fixed FromAsCasing: 'as' and 'FROM' keywords' casing do not match

Fixed FromAsCasing: 'as' and 'FROM' keywords' casing do not match #2

Workflow file for this run

name: Rust
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install Protoc
uses: arduino/setup-protoc@v3
# Update references
- name: Git Submodule Update
run: |
git pull --recurse-submodules
git submodule update --remote --recursive
# - name: Install Rust
# uses: actions-rs/toolchain@v1
# with:
# toolchain: stable
# override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose