Skip to content

chore(deps): bump libc from 0.2.172 to 0.2.173 #44

chore(deps): bump libc from 0.2.172 to 0.2.173

chore(deps): bump libc from 0.2.172 to 0.2.173 #44

Workflow file for this run

name: Test
on:
push:
branches: ["main"]
paths-ignore:
- "**.md"
pull_request:
branches: ["main"]
paths-ignore:
- "**.md"
env:
CARGO_TERM_COLOR: always
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- name: Update rust
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: Install winget
if: matrix.os == 'windows-latest'
uses: Cyberboss/install-winget@v1
- name: Install clang (Windows)
if: matrix.os == 'windows-latest'
run: winget install LLVM.LLVM --accept-source-agreements
- name: Install clang (macOS)
if: matrix.os == 'macOS-latest'
run: brew install llvm
- name: Install clang (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install clang libclang-dev
- name: Build
run: cargo build --verbose --locked
- name: Run tests
run: cargo test --verbose