Skip to content

test buckify

test buckify #21

Workflow file for this run

name: Build and test
on:
push:
pull_request:
jobs:
build-and-test:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- run: echo CARGO_HOME=$GITHUB_WORKSPACE/.cargo >> $GITHUB_ENV
shell: bash
- run: cargo build --locked
- run: cargo test
- run: |-
cd example
./setup.sh # run reindeer buckify
cat ./third-party/BUCK
shell: bash