Skip to content

Merge pull request #140 from patrickomatic/fix-fmt-errors #4

Merge pull request #140 from patrickomatic/fix-fmt-errors

Merge pull request #140 from patrickomatic/fix-fmt-errors #4

Workflow file for this run

name: umya-spreadsheet
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
run: rustup component add rustfmt clippy
- name: Build
run: cargo build
- name: Lint (clippy)
run: cargo clippy -- -D warnings
- name: Lint (rustfmt)
run: cargo fmt --all -- --check
- name: Tests
run: cargo test