lune 0.2.0

A Luau script runner
Documentation
name: CI

on:
  push:

jobs:
  ci:
    name: CI
    runs-on: ubuntu-latest

    steps:
      - name: Checkout repository
        uses: actions/checkout@v3

      - name: Install Rust
        uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          override: true
          components: rustfmt, clippy

      - name: Rustfmt
        run: cargo fmt -- --check

      - name: Build
        run: cargo build --locked --verbose

      - name: Clippy
        run: cargo clippy

      - name: Test - Lune
        run: cargo test --lib

      - name: Test - CLI
        run: cargo test --bin lune