Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
builds bins for coverage tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Ross committed Mar 14, 2024
1 parent 981e1c7 commit c8db773
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CI

on:
on:
pull_request:
push:
branches: main
Expand All @@ -15,13 +15,13 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
rust_version: [stable]
os: [ windows-latest, macos-latest, ubuntu-latest ]
rust_version: [ stable ]

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Generate code coverage
env:
RUST_BACKTRACE: "1"
run: cargo llvm-cov --all-features --lcov --output-path lcov.info
run: cargo llvm-cov --bins --all-features --lcov --output-path lcov.info

- name: Upload code coverage results
uses: codecov/codecov-action@v3
Expand All @@ -52,7 +52,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install nightly Rust toolchain
uses: dtolnay/rust-toolchain@nightly

Expand Down

0 comments on commit c8db773

Please sign in to comment.