coap-server 0.1.1

Robust async CoAP server
Documentation
name: coverage

on:
  push:
    branches: [ main ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3

    - name: Install stable toolchain
      uses: actions-rs/toolchain@v1
      with:
        toolchain: stable
        override: true

    - name: Run tarpaulin
      uses: actions-rs/tarpaulin@v0.1
      with:
        out-type: Lcov
        args: '--avoid-cfg-tarpaulin'

    - name: Coveralls Upload
      uses: coverallsapp/github-action@1.1.3
      with:
        github-token: ${{ secrets.GITHUB_TOKEN }}
        path-to-lcov: ./lcov.info