Skip to content

new operators, first try at optional chain #8

new operators, first try at optional chain

new operators, first try at optional chain #8

Workflow file for this run

name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: fmt check
run: cargo fmt --check
- name: clippy
run: cargo clippy -- -Dwarnings
- name: Build
run: cargo build