Merge remote-tracking branch 'origin/master'

This commit is contained in:
Max Bradbury 2020-04-17 09:37:15 +01:00
commit 59068dadc9
2 changed files with 22 additions and 0 deletions

21
.github/workflows/rust.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: rust-rustfmt-check
uses: mbrobbel/rustfmt-check@0.1.0

View File

@ -52,6 +52,7 @@ some more practical uses would be things like:
## todo ## todo
* test for bitsy 7.0 and implement new features
* implement fonts!! * implement fonts!!
* implement Result return types on ::from functions so we can handle errors * implement Result return types on ::from functions so we can handle errors
* output sprites/avatar in such a way that ordering is preserved * output sprites/avatar in such a way that ordering is preserved