commit 3f14e5a32986957d110c4bb667711c83ea438da0 parent 61c4f35e80fa48035300e5509e5d4f9d4c194e1a Author: Marcel <MTRNord@users.noreply.github.com> Date: Mon, 17 Feb 2020 19:05:01 +0100 Create rust.yml Diffstat:
| A | .github/workflows/rust.yml | | | 15 | +++++++++++++++ |
1 file changed, 15 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml @@ -0,0 +1,15 @@ +name: Rust + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose