Skip to content

Fix incorrect layout for SMSG_SPELL_GO for Wrath #511

Fix incorrect layout for SMSG_SPELL_GO for Wrath

Fix incorrect layout for SMSG_SPELL_GO for Wrath #511

Workflow file for this run

name: Rust
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: check # "wow_items" bloats compile time significantly
args: --all-features --workspace --exclude 'wow_items' --exclude 'wow_spells'
- uses: actions-rs/cargo@v1
with:
command: clippy # "wow_items" bloats compile time significantly
args: --all-features --workspace --exclude 'wow_items' --exclude 'wow_spells'
- uses: actions-rs/cargo@v1
with:
command: test # "wow_items" bloats compile time significantly
args: --all-features --workspace --exclude 'wow_items' --exclude 'wow_spells'
validate-ir:
name: Validate Intermediate Representation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install deps
run: sudo apt install zip -y
- name: Download jtd-validate
run: wget https://github.com/jsontypedef/json-typedef-validate/releases/download/v0.2.0/x86_64-unknown-linux-musl.zip
- name: Extract jtd-validate
run: unzip x86_64-unknown-linux-musl.zip
- name: Validate IR
run: ./jtd-validate intermediate_representation_schema.json intermediate_representation.json