Fix hive cli workspace to funciton with new testcandidate location, u… #83
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
# Format code | |
on: | |
push: | |
branches: [master, staging, trying] | |
pull_request: | |
merge_group: | |
name: Check formatting | |
jobs: | |
rustfmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup | |
with: | |
components: rustfmt | |
- name: Run cargo fmt | |
run: cargo fmt --check |