repr 0.8.0

The regular-expression-as-linear-logic interpretation and its implementation
Documentation
name: Rust

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v5

    - run: rustup install nightly && rustup default nightly && rustup component add rustfmt clippy

    - run: cargo +nightly fmt --check

    - run: cargo +nightly clippy --all-targets --all-features

    - run: cargo +nightly build

    - run: cargo +nightly test