Skip to content

Commit

Permalink
chore: update names to a pattern, and also organize bash scripts to g…
Browse files Browse the repository at this point in the history
…ithub inside a workflows directory
  • Loading branch information
devworlds committed Jan 6, 2025
1 parent a801d6b commit 9f9f881
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/general-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- main

jobs:
Msrv-Check:
MSRV:
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -23,9 +23,9 @@ jobs:
toolchain: ${{ matrix.rust }}
override: true
- name: Build Projects
run: ./scripts/build_projects.sh
run: ./scripts/workflows/build.sh

Semver-check:
SemVer:
runs-on: ubuntu-latest

steps:
Expand All @@ -49,9 +49,9 @@ jobs:
- run: sudo apt-get update && sudo apt-get install -y cmake
- run: cargo install cargo-semver-checks --version 0.37.0 --locked
- name: Run Semver Checks
run: ./scripts/run_semver_checks.sh
run: ./scripts/workflows/semver.sh

Rust-fmt:
Format:
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -73,9 +73,9 @@ jobs:
override: true
components: rustfmt
- name: Run fmt in different workspaces and crates
run: ./scripts/run_fmt.sh
run: ./scripts/workflows/format.sh

clippy-check-lint:
Clippy:
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -97,4 +97,4 @@ jobs:
override: true
components: clippy
- name: Run Clippy on different workspaces and crates
run: ./scripts/run_clippy.sh
run: ./scripts/workflows/clippy.sh
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 9f9f881

Please sign in to comment.