Skip to content

Unifies object parser #12

Unifies object parser

Unifies object parser #12

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Check code styles
run: cargo fmt --check
- name: Run tests
run: cargo test
- name: Run example
run: cargo run -p example