Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions .github/workflows/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:
jobs:
format:
name: Rustfmt Check
runs-on: [self-hosted]
runs-on: [ self-hosted ]

env:
CARGO_TERM_COLOR: always
Expand All @@ -28,16 +28,13 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive

- name: Run rustfmt
run: cargo fmt --all --check

clippy:
name: Clippy Check
strategy:
fail-fast: true

runs-on: [self-hosted]
runs-on: [ self-hosted ]
env:
CARGO_TERM_COLOR: always

Expand All @@ -52,7 +49,7 @@ jobs:

redundancy:
name: Redundancy Check
runs-on: [self-hosted]
runs-on: [ self-hosted ]

steps:
- name: Checkout repository
Expand All @@ -77,7 +74,7 @@ jobs:
build:
name: Buck2 Build

runs-on: [self-hosted]
runs-on: [ self-hosted ]

steps:
- name: Checkout repository
Expand All @@ -91,7 +88,7 @@ jobs:
test:
name: Run Tests

runs-on: [self-hosted]
runs-on: [ self-hosted ]
env:
CARGO_TERM_COLOR: always

Expand Down