Skip to content

implemented ipv6 support and other cool stuff #5

implemented ipv6 support and other cool stuff

implemented ipv6 support and other cool stuff #5

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
toolchain:
- stable
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: preinstall
run: sudo apt install liblua5.4-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose