mirror of
https://github.com/house-of-vanity/tmux-helper.git
synced 2026-02-04 01:37:57 +00:00
17 lines
233 B
YAML
17 lines
233 B
YAML
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
|
|
|