project 0.1.2

Project automation powered by Rust and Lua
name: Build Project
on:
  push:
    branches:
    - main
  pull_request:
    branches:
    - main
jobs:
  build:
    name: Build
    strategy:
      matrix:
        os: [macos-latest, ubuntu-22.04, windows-latest]
    runs-on: ${{ matrix.os }}
    steps:
    - name: Check out repository
      uses: actions/checkout@v4
    - name: Lint
      run: cargo clippy -- -D warnings
    - name: Install Project
      run: cargo install --path .