Skip to content

Merge pull request #8 from AgeManning/upgrade-ipv6 #23

Merge pull request #8 from AgeManning/upgrade-ipv6

Merge pull request #8 from AgeManning/upgrade-ipv6 #23

Workflow file for this run

name: build
on: [push]
jobs:
cargo-fmt:
runs-on: ubuntu-latest
steps:
- name: Install Protoc
uses: arduino/setup-protoc@v1
- uses: actions/checkout@v3
- name: Get latest version of stable rust
run: rustup update stable
- name: Check formatting with cargofmt
run: cargo fmt --all -- --check
release-tests-ubuntu:
runs-on: ubuntu-latest
needs: cargo-fmt
steps:
- name: Install Protoc
uses: arduino/setup-protoc@v1
- uses: actions/checkout@v3
- name: Get latest version of stable rust
run: rustup update stable
- name: Run tests in release
run: cargo test --all --release --tests