Skip to content

Parse user-defined operators #96

Parse user-defined operators

Parse user-defined operators #96

Workflow file for this run

name: Validation
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: cargo build
- name: Run tests
run: cargo test
- name: Run Clippy
run: cargo clippy -- --deny warnings