Skip to content

Commit

Permalink
Upgrade dependencies and base images (#457)
Browse files Browse the repository at this point in the history
Signed-off-by: Sergio Castaño Arteaga <tegioz@icloud.com>
  • Loading branch information
tegioz authored Jan 11, 2024
1 parent 26247e7 commit b315f89
Show file tree
Hide file tree
Showing 8 changed files with 278 additions and 178 deletions.
26 changes: 7 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,35 +13,23 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.74.0
profile: minimal
toolchain: 1.75.0
components: clippy, rustfmt
override: true
- name: Run clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- --deny warnings
run: cargo clippy --all-targets --all-features -- --deny warnings
- name: Run rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
run: cargo fmt --all -- --check

tests-backend:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.74.0
profile: minimal
override: true
toolchain: 1.75.0
- name: Run backend tests
uses: actions-rs/cargo@v1
with:
command: test
run: cargo test
Loading

0 comments on commit b315f89

Please sign in to comment.