Skip to content

build(deps): bump docker/build-push-action from 6.10.0 to 6.11.0 #278

build(deps): bump docker/build-push-action from 6.10.0 to 6.11.0

build(deps): bump docker/build-push-action from 6.10.0 to 6.11.0 #278

Workflow file for this run

---
name: Build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: [macos]
steps:
- uses: actions/checkout@v4
- uses: hecrj/setup-rust-action@v2.0.1
- uses: Swatinem/rust-cache@v2.7.7
with:
key: ${{ runner.os }}
# same checks as with `cargo build`, but no binaries are generated at the end, saving some time.
- run: cargo check
check-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hecrj/setup-rust-action@v2.0.1
with:
rust-version: stable
components: rustfmt
- run: cargo fmt -- --check
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hecrj/setup-rust-action@v2.0.1
with:
rust-version: stable
components: clippy
- uses: Swatinem/rust-cache@v2.7.7
with:
key: lint
- run: cargo clippy