Skip to content

Update Auth Error Ordering to include URI validation. #114

Update Auth Error Ordering to include URI validation.

Update Auth Error Ordering to include URI validation. #114

Workflow file for this run

name: Rust
on: [push]
env:
CARGO_INCREMENTAL: '0'
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
- name: Install Rust nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
profile: default
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Build documentation
run: cargo doc --verbose
- name: Generate coverage report
id: coverage
uses: actions-rs/grcov@v0.1
- name: Upload coverage report to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ${{ steps.coverage.outputs.report }}