Skip to content

build(deps): bump tabled from 0.16.0 to 0.17.0 #378

build(deps): bump tabled from 0.16.0 to 0.17.0

build(deps): bump tabled from 0.16.0 to 0.17.0 #378

Workflow file for this run

name: check
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch: {}
jobs:
clippy:
name: Clippy
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable, beta, nightly]
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install rust (${{ matrix.rust }})
uses: dtolnay/rust-toolchain@315e265cd78dad1e1dcf3a5074f6d6c47029d5aa
with:
components: clippy
toolchain: ${{ matrix.rust }}
- name: Run clippy
run: cargo clippy --all-features -- -D warnings
fmt:
name: Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install rust (stable)
uses: dtolnay/rust-toolchain@315e265cd78dad1e1dcf3a5074f6d6c47029d5aa
with:
components: rustfmt
toolchain: stable
- name: Run rustfmt
run: cargo fmt --check
build_and_test:
name: Build and test
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: [ubuntu, macos, windows]
rust: [stable, beta, nightly]
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install rust (${{ matrix.rust }})
uses: dtolnay/rust-toolchain@315e265cd78dad1e1dcf3a5074f6d6c47029d5aa
with:
toolchain: ${{ matrix.rust }}
- name: Cache
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
with:
path: |
~/.cargo
target
key: ${{ matrix.os }}-${{ matrix.rust }}-${{ hashFiles('Cargo.lock') }}
restore-keys: |
${{ matrix.os }}-${{ matrix.rust }}-${{ hashFiles('Cargo.lock') }}
${{ matrix.os }}-${{ matrix.rust }}-
enableCrossOsArchive: true
- name: Build
run: cargo build --all-targets
- name: Run tests
run: cargo test
- name: Perform test application run (IPv4)
run: cargo run -- --name-servers-ip v4 --lookup-ip v4 --timeout 1
# Disabled due to GitHub Actions not supporting IPv6 yet.
# - name: Perform test application run (IPv6)
# run: cargo run -- --name-servers-ip v6 --lookup-ip v6 --timeout 1
msrv:
name: Check minimal supported rust version (MSRV).
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install rust (stable)
uses: dtolnay/rust-toolchain@315e265cd78dad1e1dcf3a5074f6d6c47029d5aa
with:
toolchain: stable
- name: Cache
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
with:
path: |
~/.cargo
target
key: ${{ runner.os }}-msrv
enableCrossOsArchive: true
- name: Install cargo-msrv
run: cargo install cargo-msrv
- name: Check msrv
run: cargo msrv find --log-target stdout --log-level info