mirror of
https://github.com/house-of-vanity/tmux-helper.git
synced 2026-02-04 17:57:58 +00:00
19 lines
270 B
YAML
19 lines
270 B
YAML
name: Rust
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Build
|
|
run: cargo build --verbose --release
|
|
env:
|
|
RUST_BACKTRACE: 1
|
|
- name: Strip
|
|
run: strip target/release/tmux-helper
|
|
|