Skip to content

Commit

Permalink
Merge pull request #110 from rhysd/github-actions
Browse files Browse the repository at this point in the history
Use GitHub Actions for CI
  • Loading branch information
Stebalien authored Oct 21, 2021
2 parents cb740cc + 0b2967e commit 4038d7f
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 45 deletions.
26 changes: 0 additions & 26 deletions .circleci/config.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI
on: [push, pull_request]

jobs:
unit-test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
toolchain: [stable, '1.36']
runs-on: ${{ matrix.os }}
env:
RUSTFLAGS: -D warnings
RUST_BACKTRACE: 1
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
- name: Run tests
run: cargo test -- --color always
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ term

A Rust library for terminfo parsing and terminal colors.

[![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)
[![CI](https://github.com/Stebalien/term-crate/actions/workflows/ci.yml/badge.svg)](https://github.com/Stebalien/term-crate/actions/workflows/ci.yml)

[Documentation](https://docs.rs/term/)

Expand Down
17 changes: 0 additions & 17 deletions appveyor.yml

This file was deleted.

0 comments on commit 4038d7f

Please sign in to comment.