Skip to content

Merge pull request #62 from xfnw/minimal-version #29

Merge pull request #62 from xfnw/minimal-version

Merge pull request #62 from xfnw/minimal-version #29

Workflow file for this run

name: CI
on:
pull_request:
paths:
- '**.rs'
- '**.toml'
- '.github/workflows/ci.yml'
push:
branches: [master]
paths:
- '**.rs'
- '**.toml'
- '.github/workflows/ci.yml'
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: hecrj/setup-rust-action@v1
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose
- name: Build with features
run: cargo build --verbose --all-features
- name: Test with features
run: cargo test --verbose --all-features
env:
RUST_BACKTRACE: 1
RUST_INCREMENTAL: 0
RUSTFLAGS: "-C debuginfo=0"