-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
21 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: test | ||
|
||
on: [push] | ||
|
||
# TODO: Introduce caching https://github.com/actions/cache/blob/master/examples.md#rust---cargo | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions-rs/cargo@v1 | ||
|
||
- name: Rust Version Info | ||
run: rustc --version && cargo --version | ||
|
||
- name: Run tests | ||
run: cargo test --workspace |
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ version = "0.1.0" | |
authors = ["Chinedu Francis Nwafili <[email protected]>"] | ||
edition = "2018" | ||
keywords = ["texture", "atlas", "bin", "rect", "box", "packer"] | ||
description = "A minimal rectangle packer designed to conform to any two or three dimensional use case." | ||
description = "A minimal bin packer designed to conform to any two or three dimensional use case." |
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