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
20 changes: 9 additions & 11 deletions .github/workflows/TestingCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,19 @@ 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

macos-homebrew:

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