Skip to content

Commit

Permalink
switch to circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Jan 12, 2021
1 parent e6a28f5 commit 764b744
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 16 deletions.
26 changes: 26 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: 2.1

jobs:
test:
parameters:
version:
type: string
default: "latest"
docker:
- image: cimg/rust:<< parameters.version >>
steps:
- checkout
- run: cargo test --verbose

workflows:
version: 2
test:
jobs:
- test:
matrix:
parameters:
version:
- "1.36"
- "1.49"


11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/Stebalien/term"
homepage = "https://github.com/Stebalien/term"
documentation = "https://stebalien.github.io/doc/term/term/"
documentation = "https://docs.rs/term/"
description = """
A terminal formatting library
"""
Expand All @@ -16,7 +16,7 @@ exclude = ["/scripts/*", "/.travis.yml", "/appveyor.yml"]
edition = "2018"

[badges]
travis-ci = { repository = "Stebalien/term" }
circle-ci = { repository = "Stebalien/term" }
appveyor = { repository = "Stebalien/term" }

[dependencies]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ term

A Rust library for terminfo parsing and terminal colors.

[![Build Status](https://travis-ci.org/Stebalien/term.svg?branch=master)](https://travis-ci.org/Stebalien/term)
[![Build status](https://ci.appveyor.com/api/projects/status/2duvop23k4n3owyt?svg=true)](https://ci.appveyor.com/project/Stebalien/term)
[![CircleCI](https://circleci.com/gh/Stebalien/term.svg?style=svg)](https://circleci.com/gh/Stebalien/term)
[![AppVeyor](https://ci.appveyor.com/api/projects/status/2duvop23k4n3owyt?svg=true)](https://ci.appveyor.com/project/Stebalien/term)

[Documentation](https://stebalien.github.io/doc/term/term/)
[Documentation](https://docs.rs/term/)

## Usage

Expand Down

0 comments on commit 764b744

Please sign in to comment.