Skip to content

Add buck2 CI on Windows #4176

Add buck2 CI on Windows

Add buck2 CI on Windows #4176

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
permissions:
contents: read
jobs:
buck:
name: Buck2
runs-on: windows-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/install-buck2@latest
- run: buck2 run demo
- run: buck2 build ...
- run: buck2 test ...