Bump libc from 0.2.168 to 0.2.169 #143
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |