Changed file extensions of init command from lua to luau (#831) #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
profile: minimal | |
- name: Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Setup Aftman | |
uses: ok-nick/[email protected] | |
with: | |
version: 'v0.2.7' | |
- name: Build | |
run: cargo build --locked --verbose | |
- name: Test | |
run: cargo test --locked --verbose | |
msrv: | |
name: Check MSRV | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: 1.70.0 | |
override: true | |
profile: minimal | |
- name: Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Setup Aftman | |
uses: ok-nick/[email protected] | |
with: | |
version: 'v0.2.7' | |
- name: Build | |
run: cargo build --locked --verbose | |
lint: | |
name: Rustfmt, Clippy, & Stylua | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
components: rustfmt, clippy | |
- name: Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Setup Aftman | |
uses: ok-nick/[email protected] | |
with: | |
version: 'v0.2.7' | |
- name: Stylua | |
run: stylua --check plugin/src | |
- name: Rustfmt | |
run: cargo fmt -- --check | |
- name: Clippy | |
run: cargo clippy | |