diff --git a/.github/workflows/cargo-test.yml b/.github/workflows/cargo-test.yml new file mode 100644 index 0000000..8baa457 --- /dev/null +++ b/.github/workflows/cargo-test.yml @@ -0,0 +1,20 @@ +name: Cargo Test + +on: + push: + branches: + - devel + pull_request: + branches: + - devel + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Run Tests + run: cargo test -- --nocapture