Skip to content

Merge pull request #13 from Fee0/feat/optional-chaining #9

Merge pull request #13 from Fee0/feat/optional-chaining

Merge pull request #13 from Fee0/feat/optional-chaining #9

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