Add support for multiple connection files per logical interface #268
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
on: | |
pull_request: | |
push: | |
branches: | |
- "*" | |
name: Build & Test | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Format | |
run: cargo fmt --all -- --check | |
- name: Lint | |
run: cargo clippy --all-targets --all-features -- -D warnings | |
build: | |
runs-on: ubuntu-latest | |
needs: [ lint ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: cargo build | |
- name: Test | |
run: cargo test --no-fail-fast | |
env: | |
RUST_LOG: debug |