Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add build and test github action workflow
type: testing
  • Loading branch information
casey committed Apr 8, 2020
1 parent 98335f4 commit 3affa8c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/rust.yaml
@@ -0,0 +1,13 @@
name: Rust

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose

0 comments on commit 3affa8c

Please sign in to comment.