Compare commits

...

5 Commits

Author SHA1 Message Date
Matthew Gordon 8c4a0002fe
WIP 2019-11-28 10:49:21 -05:00
Matthew Gordon a700a28d9c
Github build action WIP 2019-11-28 10:39:04 -05:00
Matthew Gordon f52d201ffd
Github build action: WIP 2019-11-28 10:34:35 -05:00
Matthew Gordon ea5e9c3870
Github build action: Install SDL2 2019-11-28 10:33:09 -05:00
Matthew Gordon 32f5939458
Add github action to build and test 2019-11-28 10:21:53 -05:00
1 changed files with 17 additions and 0 deletions

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

@ -0,0 +1,17 @@
name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install libsdl2-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose