From 55ec17ae3c3e0b8a26869478181412f6bef12972 Mon Sep 17 00:00:00 2001 From: Eduard Tolosa Date: Tue, 13 Oct 2020 13:21:41 -0500 Subject: [PATCH] Add Github actions. --- .github/workflows/build.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..f7cf9e0 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,13 @@ +name: Github Actions + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Build + run: cargo build --verbose