Skip to content

Removes the unsafe get_connections_and_reverse function #34

Removes the unsafe get_connections_and_reverse function

Removes the unsafe get_connections_and_reverse function #34

Workflow file for this run

name: Run Rust tests
on:
pull_request:
branches:
- master
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: test-${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-20.04
target: x86_64-unknown-linux-gnu
# windows doesn't work at the moment
#- os: windows
# target: x86_64-pc-windows-msvc
- os: macos-latest
target: x86_64-apple-darwin
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
default: true
override: true
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --workspace