-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(enemy): properly position enemies
- Loading branch information
Showing
7 changed files
with
26 additions
and
59 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,35 +26,6 @@ jobs: | |
command: fmt | ||
args: --all -- --check | ||
|
||
# Run test check on Linux, macOS, and Windows | ||
test: | ||
name: Test | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
os: [ubuntu-latest, macOS-latest, windows-latest] | ||
steps: | ||
# Checkout the branch being tested | ||
- uses: actions/checkout@v4 | ||
|
||
# Install rust stable | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: stable | ||
|
||
# Cache the built dependencies | ||
- uses: Swatinem/[email protected] | ||
with: | ||
save-if: ${{ github.event_name == 'push' }} | ||
|
||
# Install cargo-hack | ||
- uses: taiki-e/install-action@cargo-hack | ||
|
||
# Test all feature combinations on the target platform | ||
- name: Test | ||
run: cargo hack --feature-powerset test | ||
|
||
# Build the WASM target & push it to GitHub pages | ||
wasm: | ||
name: WASM test & build | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
fn main() { | ||
cargo_run_wasm::run_wasm_with_css("body { margin: 0px; }"); | ||
cargo_run_wasm::run_wasm_cli_with_css("body { margin: 0px; }"); | ||
} |
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