-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from NLnetLabs/introducing-idns
Introduce dnsi with a minimal viable query command.
- Loading branch information
Showing
18 changed files
with
2,213 additions
and
536 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github: [NLnetLabs] | ||
custom: ['https://nlnetlabs.nl/funding/'] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: ci | ||
on: [push, pull_request] | ||
jobs: | ||
test: | ||
name: test | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macOS-latest] | ||
rust: [1.74.0, stable, beta, nightly] | ||
env: | ||
RUSTFLAGS: "-D warnings" | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v1 | ||
- name: Install Rust | ||
uses: hecrj/setup-rust-action@v1 | ||
with: | ||
rust-version: ${{ matrix.rust }} | ||
- if: matrix.rust == 'stable' | ||
run: rustup component add clippy | ||
- if: matrix.rust == 'stable' | ||
run: cargo clippy --all-features --all-targets -- -D warnings | ||
- run: cargo check --no-default-features --all-targets | ||
- run: cargo test --all-features | ||
- if: matrix.rust == 'nightly' | ||
run: | | ||
cargo +nightly update -Z minimal-versions | ||
cargo check --all-features --all-targets | ||
name: Check with minimal-versions |
Oops, something went wrong.