From 8cdaf4628b24a339bf145d95da6ca3a81eb3b725 Mon Sep 17 00:00:00 2001 From: Alexandr Bogomyakov Date: Wed, 4 Dec 2019 14:23:28 +0300 Subject: [PATCH] Add push action - build. --- .github/workflows/push-build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/push-build.yml diff --git a/.github/workflows/push-build.yml b/.github/workflows/push-build.yml new file mode 100644 index 0000000..130c20e --- /dev/null +++ b/.github/workflows/push-build.yml @@ -0,0 +1,16 @@ +name: Rust + +on: push + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Build + run: cargo build --verbose --release + - name: Strip + run: strip target/release/tmux-helper +