Initial source commit
This commit is contained in:
commit
08b16dae6b
12 changed files with 833 additions and 0 deletions
19
.github/workflows/rust.yml
vendored
Normal file
19
.github/workflows/rust.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: Rust
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ${{ matrix.platform }}
|
||||
strategy:
|
||||
matrix:
|
||||
platform: [ubuntu-16.04, ubuntu-latest, windows-latest, macOS-latest]
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Update
|
||||
run: rustup update
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
Reference in a new issue