Skip to content

chore(deps): bump rustix from 0.37.19 to 0.37.25 #117

chore(deps): bump rustix from 0.37.19 to 0.37.25

chore(deps): bump rustix from 0.37.19 to 0.37.25 #117

Workflow file for this run

name: πŸ”₯ CI
on: [push, pull_request]
jobs:
build_and_test:
name: 🐧 Build & Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: πŸ“₯ Checkout
uses: actions/checkout@v3
- name: ⚑ Cache
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: πŸ”¨ Build
run: cargo build
- name: πŸ§ͺ Test
run: cargo test