Skip to content

Prove admit() related to va level #172

Prove admit() related to va level

Prove admit() related to va level #172

Workflow file for this run

name: Format VOSTD Code
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
format-check:
runs-on: ubuntu-24.04
env:
CARGO_TERM_COLOR: always
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update -qq
sudo apt install -y build-essential unzip pkg-config libssl-dev llvm
- name: Run xtask bootstrap
run: cargo xtask bootstrap
- name: Run xtask fmt
run: cargo xtask fmt
- name: Check for formatting changes
run: |
if [[ -n $(git status --porcelain) ]]; then
echo "Code is not properly formatted. Run 'cargo xtask fmt'."
git diff
exit 1
fi