Skip to content

Commit

Permalink
Set up simple GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Xanewok committed Dec 27, 2019
1 parent 7f67200 commit 9d234d8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/rust.yml
@@ -0,0 +1,19 @@
name: Rust

on: [push]

jobs:
build:

runs-on: [windows-latest]

steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.34.0
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit 9d234d8

Please sign in to comment.