Skip to content

Commit

Permalink
Merge pull request #74 from Finomnis/ci_efficiency
Browse files Browse the repository at this point in the history
Add better dependencies to CI
  • Loading branch information
Finomnis authored Nov 21, 2023
2 parents 91e6942 + 843c8f9 commit c817731
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
needs: [lints, docs]
env:
RUSTFLAGS: "-D warnings"
strategy:
Expand All @@ -34,6 +35,7 @@ jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
needs: [lints, docs]
env:
RUSTFLAGS: "-D warnings"
steps:
Expand All @@ -51,6 +53,7 @@ jobs:
msrv:
name: Minimum Supported Rust Version
runs-on: ubuntu-latest
needs: [lints, docs]
env:
RUSTFLAGS: "-D warnings"
steps:
Expand All @@ -70,6 +73,7 @@ jobs:
semver:
name: Semantic Versioning
runs-on: ubuntu-latest
needs: [lints, docs]
steps:
- name: Checkout sources
uses: actions/checkout@v3
Expand Down Expand Up @@ -112,6 +116,7 @@ jobs:
leaks:
name: Memory leaks
runs-on: ubuntu-latest
needs: [lints, docs]
steps:
- name: Checkout sources
uses: actions/checkout@v3
Expand Down

0 comments on commit c817731

Please sign in to comment.