CI #175
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
# Ignore bors branches, since they are covered by `clippy_bors.yml` | |
branches: | |
- main | |
# Don't run Clippy tests, when only textfiles were modified | |
paths-ignore: | |
- 'README' | |
- 'COPYRIGHT' | |
- 'LICENSE-*' | |
- '**.md' | |
- '**.txt' | |
pull_request: | |
# Don't run Clippy tests, when only textfiles were modified | |
paths-ignore: | |
- 'README' | |
- 'COPYRIGHT' | |
- 'LICENSE-*' | |
- '**.md' | |
- '**.txt' | |
workflow_dispatch: | |
schedule: [cron: "40 1 * * *"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
# Check formatting | |
rustfmt: | |
name: rustfmt | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
# --no-self-update is necessary because the windows environment cannot self-update rustup.exe. | |
run: rustup update --no-self-update && rustup default nightly && rustup component add rustfmt | |
- name: Check formatting | |
run: cargo fmt --all -- --check | |
# Apply clippy lints | |
clippy: | |
name: clippy | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
# --no-self-update is necessary because the windows environment cannot self-update rustup.exe. | |
run: rustup update stable --no-self-update && rustup default stable | |
- name: Install cargo-hack | |
run: cargo install cargo-hack | |
- name: Apply clippy lints (unix) | |
run: cargo hack clippy --each-feature | |
if: matrix.os != 'windows-latest' | |
- name: Apply clippy lints (windows) | |
run: cargo hack clippy --each-feature --exclude-features dns-over-openssl,dnssec-openssl,dns-native-certs,dns-over-native-tls | |
if: matrix.os == 'windows-latest' | |
build: | |
name: build | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
# --no-self-update is necessary because the windows environment cannot self-update rustup.exe. | |
run: rustup update stable --no-self-update && rustup default stable | |
- name: Install cargo-hack | |
run: cargo install cargo-hack | |
- name: Install OpenSSL (Windows) | |
if: matrix.os == 'windows-latest' | |
shell: powershell | |
run: | | |
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append | |
vcpkg install openssl:x64-windows-static-md | |
- name: Build (unix) | |
run: cargo hack build --each-feature | |
if: matrix.os != 'windows-latest' | |
- name: Build (windows) | |
run: cargo hack build --each-feature --exclude-features dns-over-openssl,dnssec-openssl,dns-native-certs,dns-over-native-tls | |
if: matrix.os == 'windows-latest' | |
coverage: | |
name: coverage | |
runs-on: ubuntu-latest | |
needs: | |
- rustfmt | |
- clippy | |
- build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install latest nightly | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
- uses: actions-rs/install@v0.1 | |
with: | |
crate: cargo-tarpaulin | |
version: latest | |
- name: Cache ~/.cargo | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cargo | |
key: ${{ runner.os }}-coverage-dotcargo | |
- name: Cache cargo build | |
uses: actions/cache@v4 | |
with: | |
path: target | |
key: ${{ runner.os }}-coverage-cargo-build-target | |
- name: Run tarpaulin | |
uses: actions-rs/cargo@v1 | |
with: | |
command: tarpaulin | |
args: --all-features --run-types tests --workspace --out xml | |
- name: Upload to codecov.io | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
slug: ${{ github.repository }} |