Bump github.com/docker/docker from 1.4.2-0.20200214221943-d8772509d1a2 to 26.1.2+incompatible in /tests/integration/functional #15
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: build | |
on: [pull_request] | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checking out | |
uses: actions/checkout@v3 | |
- name: setup | |
run: | | |
rustup component add rustfmt --toolchain stable-x86_64-unknown-linux-gnu | |
rustup component add clippy | |
- name: build | |
run: | | |
cd /home/runner/work/rustybgp/rustybgp | |
cargo clippy -- -D warnings | |
cargo test --verbose --all | |
cargo fmt -- --check |