chore: use github actions

This commit is contained in:
Kilerd Chan 2019-08-28 09:32:10 +08:00 committed by GitHub
parent 69cc0c2337
commit 941388aceb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

19
.github/workflows/dev-rust.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Development Test
on:
push:
branches:
- develop
- feature/*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose