Skip to content

Commit

Permalink
Switch to GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Oct 22, 2021
1 parent 7e41be6 commit fa404d7
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 15 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI
on: [push, pull_request]

jobs:
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install rust
run: rustup update --no-self-update stable && rustup default stable
- name: Check formatting
run: cargo fmt -- --check

test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
include:
- rust: stable
- rust: beta
- rust: nightly
- rust: 1.40.0
steps:
- uses: actions/checkout@v2
- name: Install rust
run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
- name: Run tests
run: |
cargo build --verbose
cargo build --verbose --no-default-features
cargo test --verbose
cargo test --verbose --no-default-features
cargo test --verbose --all-features
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

0 comments on commit fa404d7

Please sign in to comment.