diff options
author | Stuart Stock <stuart@int08h.com> | 2020-09-21 17:47:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-21 17:47:10 -0500 |
commit | 334ab6cc9cea5fc99cf92f74f2db118783b31e89 (patch) | |
tree | f334efb45bde602757f7179db730379dbc1c32f2 | |
parent | 9556234cbb5dc01258ca895350deac63ada0ccd7 (diff) | |
parent | fe7041838661ea5d111116b9e473eecdd8f75a62 (diff) | |
download | roughenough-334ab6cc9cea5fc99cf92f74f2db118783b31e89.zip |
Merge pull request #26 from int08h/try-github-actions
Try Gitbub actions for builds
-rw-r--r-- | .github/workflows/rust.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..51be4ac --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,29 @@ +name: Rust + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/cache@v2 + with: + path: | + ~/.cargo/registry + ~/.cargo/git + target + key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + - uses: actions/checkout@v2 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose |