Skip to content
Merged
Changes from 1 commit
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
22 changes: 11 additions & 11 deletions .github/workflows/TestingCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,21 @@ env:

jobs:
linux-ubuntu:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Fetch
run: cargo fetch
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --release --verbose
- uses: actions/checkout@v4
- name: Fetch
run: cargo fetch
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --release --verbose
- name: Run fmt check
run: cargo fmt --all -- --check
# - name: Run clippy check
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. A PR should "do what it says, and no more"

  2. Never add commented-out code or instructions. Any code not run is code never tested, and will become fragile and break.

  3. Delete the commented out part of this PR, and it is ok.

# run: cargo clippy --all-features -- -D warnings

macos-homebrew:

runs-on: macos-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -46,4 +47,3 @@ jobs:
run: cargo build --release --verbose
- name: Run tests
run: cargo test --release --verbose