Skip to content

Add note about dynamic linking features #51

Add note about dynamic linking features

Add note about dynamic linking features #51

Workflow file for this run

name: build and test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: dtolnay/rust-toolchain@1.64.0
- name: Install LLVM package
run: sudo apt-get install llvm-13-dev
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose