Skip to content

chore(swiftide): loosen up dependencies #230

chore(swiftide): loosen up dependencies

chore(swiftide): loosen up dependencies #230

Workflow file for this run

name: Coverage
on:
pull_request:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
name: coverage
runs-on: ubuntu-latest
env:
RUST_LOG: swiftide=debug
RUST_BACKTRACE: 1
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy,rustfmt
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov
- name: Generate code coverage
run: |
cargo llvm-cov --lcov --output-path target/lcov.info --all-features
- name: Coveralls
uses: coverallsapp/github-action@v2