Skip to content

Bump libc from 0.2.168 to 0.2.169 #143

Bump libc from 0.2.168 to 0.2.169

Bump libc from 0.2.168 to 0.2.169 #143

Workflow file for this run

name: Rust
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install tdb-dev
run: sudo apt install -y libtdb-dev
if: matrix.os == 'ubuntu-latest'
- name: Install tdb
run: brew install tdb
if: matrix.os == 'macos-latest'
- name: Build
run: cargo build --verbose
env:
RUSTFLAGS: -Dwarnings
- name: Run tests
run: cargo test --verbose
env:
RUSTFLAGS: -Dwarnings
- name: Check formatting
run: cargo fmt -- --check