Small cleaning up + Fix for crash when looping through empty Vec #390
Workflow file for this run
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
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
name: Check and Lint | |
jobs: | |
check: | |
name: Check | |
runs-on: ${{ matrix.run_args.os }} | |
strategy: | |
matrix: | |
run_args: [ | |
{os: windows-latest, lua: lua54, cross: null}, | |
{os: macOS-latest, lua: lua54, cross: null}, | |
{os: ubuntu-latest, lua: lua54, cross: aarch64-unknown-linux-gnu}, | |
{os: ubuntu-latest, lua: lua51, cross: null}, | |
{os: ubuntu-latest, lua: lua52, cross: null}, | |
{os: ubuntu-latest, lua: lua53, cross: null}, | |
{os: ubuntu-latest, lua: lua54, cross: null}, | |
{os: ubuntu-latest, lua: luajit, cross: null}, | |
{os: ubuntu-latest, lua: luajit52, cross: null} | |
] | |
steps: | |
- name: Install alsa and udev | |
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev | |
if: runner.os == 'linux' | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- uses: Swatinem/[email protected] | |
# for x86 builds | |
- if: matrix.run_args.cross == null | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --workspace --features=${{ matrix.run_args.lua }},rhai,teal,lua_script_api,rhai_script_api | |
# for non x86 cross-compiled builds | |
- if: matrix.run_args.cross != null | |
uses: houseabsolute/actions-rust-cross@v0 | |
with: | |
command: check | |
target: ${{ matrix.run_args.cross }} | |
args: --workspace --features=${{ matrix.run_args.lua }},rhai,teal,lua_script_api,rhai_script_api | |
fmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install alsa and udev | |
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
components: rustfmt | |
toolchain: stable | |
override: true | |
- uses: Swatinem/[email protected] | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install alsa and udev | |
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
components: clippy | |
override: true | |
- uses: Swatinem/[email protected] | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --features=lua54,rhai,teal,lua_script_api,rhai_script_api -- -D warnings | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Maximize build space | |
uses: easimon/maximize-build-space@master | |
with: | |
root-reserve-mb: 512 | |
swap-size-mb: 1024 | |
remove-dotnet: 'true' | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
echo "Free space:" | |
df -h | |
- name: Install alsa and udev | |
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- uses: Swatinem/[email protected] | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --workspace --features=lua54,rhai,teal,lua_script_api,rhai_script_api | |
docs: | |
name: Docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install alsa and udev | |
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- uses: Swatinem/[email protected] | |
- name: Find docs.rs features | |
run: echo "DOCS_FEATURES=$(cargo metadata --no-deps | python -c "import sys,json; [print(','.join(x['metadata']['docs.rs']['features'])) for x in json.load(sys.stdin)['packages'] if x['name'] == 'bevy_mod_scripting']")" >> $GITHUB_OUTPUT | |
id: features | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: doc | |
args: --workspace --features=${{ steps.features.outputs.DOCS_FEATURES }} |