Skip to content

eval let statement with full node range #103

eval let statement with full node range

eval let statement with full node range #103

Workflow file for this run

name: lint
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Switch to nightly rust
run: |
rustup update nightly
rustup default nightly
rustup component add rustfmt
rustup component add clippy
- name: Run tests
run: cargo test --verbose
- name: Check formatting
run: cargo fmt --all --check
- name: Lint w/ clippy
run: cargo clippy --all-targets -- -D warnings