feat(network): add DNS servers configuration #220
Workflow file for this run
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: | |
branches: ['main'] | |
pull_request: | |
jobs: | |
test: | |
name: Test crate | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-13] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout repository | |
- uses: dtolnay/rust-toolchain@stable | |
name: Set up toolchain | |
- uses: taiki-e/install-action@cargo-llvm-cov | |
name: Install cargo llvm-cov | |
- uses: Swatinem/rust-cache@v2 | |
name: Cache toolchain and dependencies | |
- run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info | |
name: Test with coverage | |
- uses: codecov/codecov-action@v4 | |
name: Upload coverage to Codecov | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
files: lcov.info | |
fail_ci_if_error: true | |
lint: | |
name: Check code style | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout repository | |
- uses: dtolnay/rust-toolchain@master | |
name: Set up toolchain | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
- uses: Swatinem/rust-cache@v2 | |
name: Cache toolchain and dependencies | |
- uses: actions-rs/cargo@v1 | |
name: Check code with cargo fmt | |
with: | |
command: fmt | |
args: --all -- --check | |
- uses: actions-rs/cargo@v1 | |
name: Check code with cargo clippy | |
with: | |
command: clippy | |
args: --all-targets -- -D warnings |