Skip to content

Bump docker/build-push-action from 6.7.0 to 6.9.0 #32

Bump docker/build-push-action from 6.7.0 to 6.9.0

Bump docker/build-push-action from 6.7.0 to 6.9.0 #32

Workflow file for this run

name: Contribution checks
on:
push:
branches:
- main
- maint/*
pull_request:
branches:
- main
- maint/*
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pipx run ruff check .
- run: pipx run ruff format --diff .
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Codespell
uses: codespell-project/actions-codespell@v2