transmission-rpc/.github/workflows/ci.yml
red 721eaa7d01 update ci
added automatic release pipeline
2021-02-07 18:39:41 +01:00

20 lines
413 B
YAML

name: CI
on: [push]
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Get Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Cargo Build
uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features