Skip to content

Commit

Permalink
Merge pull request #137 from inotify-rs/github-actions
Browse files Browse the repository at this point in the history
Replace Travis CI with GitHub Actions
  • Loading branch information
hannobraun authored Nov 28, 2019
2 parents 75f5226 + 588b8d2 commit 0462e70
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Rust

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

0 comments on commit 0462e70

Please sign in to comment.