Skip to content

Commit 5f76ec1

Browse files
committed
Add new line
1 parent c577884 commit 5f76ec1

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/ci.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,8 @@ jobs:
5757
external-types:
5858
strategy:
5959
matrix:
60-
os: [ windows-latest, ubuntu-latest ]
6160
example: [opentelemetry, opentelemetry-sdk, opentelemetry-otlp, opentelemetry-zipkin]
62-
runs-on: ${{ matrix.os }}
61+
runs-on: ubuntu-latest # TODO: Check if this could be covered on Windows. The step used currently fails on Windows.
6362
steps:
6463
- uses: actions/checkout@v4
6564
- uses: dtolnay/rust-toolchain@nightly
@@ -107,10 +106,7 @@ jobs:
107106
cargo test --manifest-path=opentelemetry-jaeger/Cargo.toml --features rt-tokio &&
108107
cargo test --manifest-path=opentelemetry-zipkin/Cargo.toml
109108
cargo-deny:
110-
strategy:
111-
matrix:
112-
os: [ windows-latest, ubuntu-latest ]
113-
runs-on: ${{ matrix.os }}
109+
runs-on: ubuntu-latest # This is only supported on Linux
114110
continue-on-error: true # Prevent sudden announcement of a new advisory from failing ci
115111
steps:
116112
- uses: actions/checkout@v4
@@ -160,4 +156,5 @@ jobs:
160156
- name: Upload to codecov.io
161157
uses: codecov/codecov-action@v3
162158
with:
163-
fail_ci_if_error: false
159+
fail_ci_if_error: false
160+

0 commit comments

Comments
 (0)