Files
tmux-helper/.github/workflows/push-build.yml
Alexandr Bogomyakov b264f3b823 Fix workflow.
2019-12-04 14:52:59 +03:00

21 lines
360 B
YAML

name: Rust
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Pre-build
run: sudo apt install -y libdbus-1-dev pkg-config libdbus-1-3
- name: Build
run: cargo build --verbose --release
env:
RUST_BACKTRACE: 1
- name: Strip
run: strip target/release/tmux-helper