Skip to content

Bump image from 0.24.7 to 0.25.1 #52

Bump image from 0.24.7 to 0.25.1

Bump image from 0.24.7 to 0.25.1 #52

Workflow file for this run

---
name: Cargo Build & Test
on: # yamllint disable-line rule:truthy
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install toolchain
run: |
rustup update ${{ matrix.toolchain }} && \
rustup default ${{ matrix.toolchain }}
- name: Use cache
uses: Swatinem/rust-cache@v2
- name: Build with ${{ matrix.toolchain }}
run: cargo build --verbose
- name: Check with ${{ matrix.toolchain }}
run: cargo check --verbose