Add Github Actions CI specification

This commit is contained in:
Andreas Molzer 2021-01-14 01:19:39 +01:00
parent d34072696c
commit 7a9b96c3c2
3 changed files with 42 additions and 16 deletions

41
.github/workflows/rust.yml vendored Normal file
View File

@ -0,0 +1,41 @@
name: Rust CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rust: ["1.34.2", stable, beta, nightly]
features: [ "", "std" ]
steps:
- uses: actions/checkout@v2
- run: rustup default ${{ matrix.rust }}
- name: build
run: >
cargo build --verbose --no-default-features --features "$FEATURES"
- name: test
run: >
cargo test --tests --benches --no-default-features --features "$FEATURES"
if: ${{ matrix.rust != '1.34.2' }}
env:
FEATURES: ${{ matrix.features }}
rustfmt:
runs-on: ubuntu-latest
skip-if: true
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt
- name: Run rustfmt check
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
target
*.sublime-*
.*
!.github
Cargo.lock

View File

@ -1,16 +0,0 @@
language: rust
rust:
- 1.34.2
- stable
- nightly
env:
matrix:
- FEATURES=''
- FEATURES='std'
script:
- if [ "${TRAVIS_RUST_VERSION}" == "1.34.2" ]; then
cargo build -v --features="$FEATURES";
else
cargo test -v --features="$FEATURES";
cargo build --benches -v --features="$FEATURES";
fi