Bump perl from 5.40.0-slim-bookworm to 5.40.1-slim-bookworm #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration (CI) | |
on: [push, pull_request] | |
jobs: | |
documentation: | |
name: Check documentation integrity and spelling | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Check spelling in Markdown files | |
uses: rojopolis/[email protected] | |
- name: Check Markdown files using Markdownlint | |
uses: nosborn/[email protected] | |
with: | |
files: . | |
config_file: ".markdownlint.json" | |
build: | |
name: Build Docker images | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build Docker images for multiple platforms without pushing | |
uses: docker/build-push-action@v6 | |
with: | |
push: false | |
platforms: linux/amd64,linux/arm64 | |
tags: jonasbn/ebirah:latest |