revise spinlocks to support the lock_api interface #489
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check format | |
on: | |
push: | |
branches: | |
- stage3 | |
pull_request: | |
branches: | |
- stage3 | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Check Cargo availability | |
run: cargo --version | |
- name: Check Formatting | |
run: cargo fmt -- --check |