4 Commits

Author SHA1 Message Date
0aa36825b0 Add travis but not yet 2020-08-20 20:59:34 +07:00
Sambo Chea
cf5ca2073e Create rust.yml 2020-08-20 20:57:30 +07:00
453649b1ce Update the categories 2020-08-20 20:44:30 +07:00
398e9bf71d Remove unused 2020-08-20 20:42:28 +07:00
3 changed files with 23 additions and 3 deletions

17
.github/workflows/rust.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
on: [push]
name: CSRS - CI
jobs:
build_and_test:
name: csrs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features

4
.travis.yml Normal file
View File

@@ -0,0 +1,4 @@
# .travis.yml
language: rust
rust:
- stable

View File

@@ -1,17 +1,16 @@
[package]
name = "csrs"
version = "0.1.1-dev"
version = "0.1.2-dev"
authors = ["Sambo Chea <sombochea@cubetiqs.com>"]
edition = "2018"
description = "CUBETIQ Syncer for database tools and internal tool for the team in the company."
license = "MIT"
repository = "https://github.com/CUBETIQ/csrs.git"
keywords = ["rust-cli", "cubetiq-cli", "tools", "clap"]
categories = ["cli", "tools"]
categories = ["command-line-interface", "command-line-utilities"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = "0.3.13"
clap = "2.33.3"