Skip to content

Support native IPv6 on BSD; update base64 to 0.22 (#57) #186

Support native IPv6 on BSD; update base64 to 0.22 (#57)

Support native IPv6 on BSD; update base64 to 0.22 (#57) #186

Workflow file for this run

name: Continuous integration
on:
push:
branches:
- main
paths-ignore:
- 'LICENSE'
pull_request:
branches:
- main
paths-ignore:
- 'LICENSE'
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: [self-hosted, Linux]
container: rust:1.75
steps:
- name: Debug
run: echo ${{ github.ref_name }}
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Cache
uses: Swatinem/rust-cache@v2
with:
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Check format
run: |
rustup component add rustfmt
cargo fmt -- --check
- name: Run tests
run: cargo test --locked --no-fail-fast