Added workflow to build for Linux and WASM

This commit is contained in:
G2-Games 2024-03-11 16:40:36 -05:00
parent 04ab4e75a6
commit 0b403163be

View file

@ -16,8 +16,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Build - name: Build Linux
run: cargo build --verbose run: cargo build --verbose --target x86_64-unknown-linux-gnu
- name: Build WASM
run: cargo build --verbose --target wasm32-unknown-unknown
- name: Run tests - name: Run tests
run: cargo test --verbose run: cargo test --verbose
- name: Run clippy - name: Run clippy