Skip to content

feat: client side portion of experimental tunnel #13

feat: client side portion of experimental tunnel

feat: client side portion of experimental tunnel #13

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
include:
- os: ubuntu-latest
- os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Build Library
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose