Skip to content

Merge pull request #15 from tmpfs/android-ceil #59

Merge pull request #15 from tmpfs/android-ceil

Merge pull request #15 from tmpfs/android-ceil #59

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build
- name: Formatting
run: cargo fmt --all -- --check
- name: Linting
run: cargo clippy -- -D warnings
- name: Tests
run: cargo test
features:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --all-features
- name: Tests
run: cargo test --all-features