Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: do not use -Dwarnings rust flag on coverage #123

Merged
merged 1 commit into from
Mar 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ on:
schedule:
- cron: '45 4 * * 3'

env:
RUSTFLAGS: -Dwarnings

jobs:
test-linux:
name: Test ${{matrix.build}}
runs-on: ubuntu-22.04

env:
RUSTFLAGS: -Dwarnings

steps:
- name: Install openssl x86 and 32 support for gcc
if: ${{ matrix.build == 'linux32' }}
Expand Down Expand Up @@ -71,6 +71,9 @@ jobs:
name: Test ${{matrix.build}}
runs-on: windows-2022

env:
RUSTFLAGS: -Dwarnings

steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -129,6 +132,9 @@ jobs:
name: Test Macos 12
runs-on: macos-12

env:
RUSTFLAGS: -Dwarnings

steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -162,6 +168,8 @@ jobs:
clippy:
name: Clippy
runs-on: ubuntu-22.04
env:
RUSTFLAGS: -Dwarnings
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -222,6 +230,8 @@ jobs:
msrv:
name: Rust 1.65.0
runs-on: ubuntu-22.04
env:
RUSTFLAGS: -Dwarnings
steps:
- uses: actions/checkout@v3
- uses: dtolnay/[email protected]
Expand Down
Loading