Skip to content

Duplicate VariableName to Variable for backward compat and cleanup #11

Duplicate VariableName to Variable for backward compat and cleanup

Duplicate VariableName to Variable for backward compat and cleanup #11

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint
run: cargo clippy
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose