diff options
author | Sean Carroll <seanc28@gmail.com> | 2021-01-02 13:53:46 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-02 13:53:46 -0600 |
commit | 8d4ac73304df371250902dfe5f601a775f2ab420 (patch) | |
tree | 2beedc56b6fc02031d5a84d1c5517c9f337a425f | |
parent | 760006c01e967758fb0d78f135dcaff5e4acc6d0 (diff) | |
download | dotavious-8d4ac73304df371250902dfe5f601a775f2ab420.zip |
Create rust.yml
adding basic default rust github actions workflow
-rw-r--r-- | .github/workflows/rust.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..7ae98f3 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose |