Skip to content

Commit

Permalink
Use GitHub Actions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
murarth committed Jan 17, 2020
1 parent 8b142de commit aa77f8b
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 9 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI

on:
pull_request:
paths:
- '**.rs'
- '**.toml'
- '.github/workflows/ci.yml'
push:
branches: [master]
paths:
- '**.rs'
- '**.toml'
- '.github/workflows/ci.yml'

jobs:
Test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: hecrj/setup-rust-action@v1

- name: Build
run: cargo build --verbose

- name: Test
run: cargo test --verbose

env:
RUST_BACKTRACE: 1
RUST_INCREMENTAL: 0
RUSTFLAGS: "-C debuginfo=0"
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

0 comments on commit aa77f8b

Please sign in to comment.