matrix-notify 0.4.2

A command line tool for sending messages to matrix chatrooms.
Documentation
name: Code Coverage

on:
  push:
    branches:
      - master

jobs:
  cover:
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v3
      - name: Install Stable Toolchain
        uses: dtolnay/rust-toolchain@stable
        with:
          toolchain: 1.65.0
          components: rustfmt
      - name: Cache Rust
        uses: Swatinem/rust-cache@v2
      - name: Run cargo-tarpaulin
        uses: actions-rs/tarpaulin@v0.1
        with:
          version: "0.18.0"
      - name: Upload To codecov.io
        uses: codecov/codecov-action@v3
        with:
          token: ${{secrets.CODECOV_TOKEN}}
      - name: Archive Code Coverage Results
        uses: actions/upload-artifact@v3
        with:
          name: code-coverage-report
          path: cobertura.xml