actions-rs / tarpaulin

📈 GitHub Action for code coverage reporting with tarpaulin
MIT License
89 stars 16 forks source link

Provide example for coveralls in README #9

Open MarcoIeni opened 4 years ago

MarcoIeni commented 4 years ago

Motivation

Upload to coveralls example might be useful for someone.

Workflow example

This is an example taken from here.

      - name: Run cargo-tarpaulin
        uses: actions-rs/tarpaulin@v0.1
        with:
          args: '--ignore-tests --out Lcov'

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