Fix incorrect layout for SMSG_SPELL_GO for Wrath #511
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: 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 |