Test crate with GitHub Actions

This adds a GitHub Actions workflow to test this crate with the Rust
stable, beta, and nightly toolchains.
This commit is contained in:
Patrick Lühne 2020-04-09 15:28:45 +02:00
parent 153f77621e
commit fd6ba4a005
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 32 additions and 0 deletions

32
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,32 @@
name: Rust
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
build: [stable, beta, nightly]
include:
- build: stable
rust: stable
- build: beta
rust: beta
- build: nightly
rust: nightly
steps:
- uses: actions/checkout@v2
- name: Install Rust (rustup)
run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }}
shell: bash
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose